Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Asn1/Eac/EacObjectIdentifiers.cs
2025-10-09 09:57:24 +09:00

47 lines
2.5 KiB
C#

namespace Org.BouncyCastle.Asn1.Eac;
public abstract class EacObjectIdentifiers
{
public static readonly DerObjectIdentifier bsi_de = new DerObjectIdentifier("0.4.0.127.0.7");
public static readonly DerObjectIdentifier id_PK = new DerObjectIdentifier(string.Concat(bsi_de, ".2.2.1"));
public static readonly DerObjectIdentifier id_PK_DH = new DerObjectIdentifier(string.Concat(id_PK, ".1"));
public static readonly DerObjectIdentifier id_PK_ECDH = new DerObjectIdentifier(string.Concat(id_PK, ".2"));
public static readonly DerObjectIdentifier id_CA = new DerObjectIdentifier(string.Concat(bsi_de, ".2.2.3"));
public static readonly DerObjectIdentifier id_CA_DH = new DerObjectIdentifier(string.Concat(id_CA, ".1"));
public static readonly DerObjectIdentifier id_CA_DH_3DES_CBC_CBC = new DerObjectIdentifier(string.Concat(id_CA_DH, ".1"));
public static readonly DerObjectIdentifier id_CA_ECDH = new DerObjectIdentifier(string.Concat(id_CA, ".2"));
public static readonly DerObjectIdentifier id_CA_ECDH_3DES_CBC_CBC = new DerObjectIdentifier(string.Concat(id_CA_ECDH, ".1"));
public static readonly DerObjectIdentifier id_TA = new DerObjectIdentifier(string.Concat(bsi_de, ".2.2.2"));
public static readonly DerObjectIdentifier id_TA_RSA = new DerObjectIdentifier(string.Concat(id_TA, ".1"));
public static readonly DerObjectIdentifier id_TA_RSA_v1_5_SHA_1 = new DerObjectIdentifier(string.Concat(id_TA_RSA, ".1"));
public static readonly DerObjectIdentifier id_TA_RSA_v1_5_SHA_256 = new DerObjectIdentifier(string.Concat(id_TA_RSA, ".2"));
public static readonly DerObjectIdentifier id_TA_RSA_PSS_SHA_1 = new DerObjectIdentifier(string.Concat(id_TA_RSA, ".3"));
public static readonly DerObjectIdentifier id_TA_RSA_PSS_SHA_256 = new DerObjectIdentifier(string.Concat(id_TA_RSA, ".4"));
public static readonly DerObjectIdentifier id_TA_ECDSA = new DerObjectIdentifier(string.Concat(id_TA, ".2"));
public static readonly DerObjectIdentifier id_TA_ECDSA_SHA_1 = new DerObjectIdentifier(string.Concat(id_TA_ECDSA, ".1"));
public static readonly DerObjectIdentifier id_TA_ECDSA_SHA_224 = new DerObjectIdentifier(string.Concat(id_TA_ECDSA, ".2"));
public static readonly DerObjectIdentifier id_TA_ECDSA_SHA_256 = new DerObjectIdentifier(string.Concat(id_TA_ECDSA, ".3"));
public static readonly DerObjectIdentifier id_TA_ECDSA_SHA_384 = new DerObjectIdentifier(string.Concat(id_TA_ECDSA, ".4"));
public static readonly DerObjectIdentifier id_TA_ECDSA_SHA_512 = new DerObjectIdentifier(string.Concat(id_TA_ECDSA, ".5"));
}