add all
This commit is contained in:
38
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/icao/ICAOObjectIdentifiers.cs
vendored
Normal file
38
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/icao/ICAOObjectIdentifiers.cs
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.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
|
||||
Reference in New Issue
Block a user