blob: b7848d9a451e3c4baee141dd5797e5d703040eb8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
using System;
namespace Org.BouncyCastle.Asn1.Icao
{
// TODO[api] Make static
public abstract class IcaoObjectIdentifiers
{
//
// base id
//
public static readonly DerObjectIdentifier IdIcao = new DerObjectIdentifier("2.23.136");
public static readonly DerObjectIdentifier IdIcaoMrtd = IdIcao.Branch("1");
public static readonly DerObjectIdentifier IdIcaoMrtdSecurity = IdIcaoMrtd.Branch("1");
// LDS security object, see ICAO Doc 9303-Volume 2-Section IV-A3.2
public static readonly DerObjectIdentifier IdIcaoLdsSecurityObject = IdIcaoMrtdSecurity.Branch("1");
// CSCA master list, see TR CSCA Countersigning and Master List issuance
public static readonly DerObjectIdentifier IdIcaoCscaMasterList = IdIcaoMrtdSecurity.Branch("2");
public static readonly DerObjectIdentifier IdIcaoCscaMasterListSigningKey = IdIcaoMrtdSecurity.Branch("3");
// document type list, see draft TR LDS and PKI Maintenance, par. 3.2.1
public static readonly DerObjectIdentifier IdIcaoDocumentTypeList = IdIcaoMrtdSecurity.Branch("4");
// Active Authentication protocol, see draft TR LDS and PKI Maintenance,
// par. 5.2.2
public static readonly DerObjectIdentifier IdIcaoAAProtocolObject = IdIcaoMrtdSecurity.Branch("5");
// CSCA name change and key reoll-over, see draft TR LDS and PKI
// Maintenance, par. 3.2.1
public static readonly DerObjectIdentifier IdIcaoExtensions = IdIcaoMrtdSecurity.Branch("6");
public static readonly DerObjectIdentifier IdIcaoExtensionsNamechangekeyrollover = IdIcaoExtensions.Branch("1");
}
}
|