You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.6 KiB
39 lines
1.6 KiB
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Icao
|
||
|
{
|
||
|
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");
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|