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.
66 lines
3.0 KiB
66 lines
3.0 KiB
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
|
||
|
{
|
||
|
public abstract class X509ObjectIdentifiers
|
||
|
{
|
||
|
//
|
||
|
// base id
|
||
|
//
|
||
|
internal const string ID = "2.5.4";
|
||
|
|
||
|
public static readonly DerObjectIdentifier CommonName = new DerObjectIdentifier(ID + ".3");
|
||
|
public static readonly DerObjectIdentifier CountryName = new DerObjectIdentifier(ID + ".6");
|
||
|
public static readonly DerObjectIdentifier LocalityName = new DerObjectIdentifier(ID + ".7");
|
||
|
public static readonly DerObjectIdentifier StateOrProvinceName = new DerObjectIdentifier(ID + ".8");
|
||
|
public static readonly DerObjectIdentifier Organization = new DerObjectIdentifier(ID + ".10");
|
||
|
public static readonly DerObjectIdentifier OrganizationalUnitName = new DerObjectIdentifier(ID + ".11");
|
||
|
|
||
|
public static readonly DerObjectIdentifier id_at_telephoneNumber = new DerObjectIdentifier(ID + ".20");
|
||
|
public static readonly DerObjectIdentifier id_at_name = new DerObjectIdentifier(ID + ".41");
|
||
|
|
||
|
public static readonly DerObjectIdentifier id_at_organizationIdentifier = new DerObjectIdentifier("2.5.4.97");
|
||
|
|
||
|
// id-SHA1 OBJECT IDENTIFIER ::=
|
||
|
// {iso(1) identified-organization(3) oiw(14) secsig(3) algorithms(2) 26 } //
|
||
|
public static readonly DerObjectIdentifier IdSha1 = new DerObjectIdentifier("1.3.14.3.2.26");
|
||
|
|
||
|
//
|
||
|
// ripemd160 OBJECT IDENTIFIER ::=
|
||
|
// {iso(1) identified-organization(3) TeleTrust(36) algorithm(3) hashAlgorithm(2) RipeMD-160(1)}
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier RipeMD160 = new DerObjectIdentifier("1.3.36.3.2.1");
|
||
|
|
||
|
//
|
||
|
// ripemd160WithRSAEncryption OBJECT IDENTIFIER ::=
|
||
|
// {iso(1) identified-organization(3) TeleTrust(36) algorithm(3) signatureAlgorithm(3) rsaSignature(1) rsaSignatureWithripemd160(2) }
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier RipeMD160WithRsaEncryption = new DerObjectIdentifier("1.3.36.3.3.1.2");
|
||
|
|
||
|
public static readonly DerObjectIdentifier IdEARsa = new DerObjectIdentifier("2.5.8.1.1");
|
||
|
|
||
|
// id-pkix
|
||
|
public static readonly DerObjectIdentifier IdPkix = new DerObjectIdentifier("1.3.6.1.5.5.7");
|
||
|
|
||
|
//
|
||
|
// private internet extensions
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier IdPE = new DerObjectIdentifier(IdPkix + ".1");
|
||
|
|
||
|
//
|
||
|
// authority information access
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier IdAD = new DerObjectIdentifier(IdPkix + ".48");
|
||
|
public static readonly DerObjectIdentifier IdADCAIssuers = new DerObjectIdentifier(IdAD + ".2");
|
||
|
public static readonly DerObjectIdentifier IdADOcsp = new DerObjectIdentifier(IdAD + ".1");
|
||
|
|
||
|
//
|
||
|
// OID for ocsp and crl uri in AuthorityInformationAccess extension
|
||
|
//
|
||
|
public static readonly DerObjectIdentifier OcspAccessMethod = IdADOcsp;
|
||
|
public static readonly DerObjectIdentifier CrlAccessMethod = IdADCAIssuers;
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|