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.
309 lines
18 KiB
309 lines
18 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs |
|
{ |
|
public abstract class PkcsObjectIdentifiers |
|
{ |
|
// |
|
// pkcs-1 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 1 } |
|
// |
|
public const string Pkcs1 = "1.2.840.113549.1.1"; |
|
internal static readonly DerObjectIdentifier Pkcs1Oid = new DerObjectIdentifier(Pkcs1); |
|
|
|
public static readonly DerObjectIdentifier RsaEncryption = Pkcs1Oid.Branch("1"); |
|
public static readonly DerObjectIdentifier MD2WithRsaEncryption = Pkcs1Oid.Branch("2"); |
|
public static readonly DerObjectIdentifier MD4WithRsaEncryption = Pkcs1Oid.Branch("3"); |
|
public static readonly DerObjectIdentifier MD5WithRsaEncryption = Pkcs1Oid.Branch("4"); |
|
public static readonly DerObjectIdentifier Sha1WithRsaEncryption = Pkcs1Oid.Branch("5"); |
|
public static readonly DerObjectIdentifier SrsaOaepEncryptionSet = Pkcs1Oid.Branch("6"); |
|
public static readonly DerObjectIdentifier IdRsaesOaep = Pkcs1Oid.Branch("7"); |
|
public static readonly DerObjectIdentifier IdMgf1 = Pkcs1Oid.Branch("8"); |
|
public static readonly DerObjectIdentifier IdPSpecified = Pkcs1Oid.Branch("9"); |
|
public static readonly DerObjectIdentifier IdRsassaPss = Pkcs1Oid.Branch("10"); |
|
public static readonly DerObjectIdentifier Sha256WithRsaEncryption = Pkcs1Oid.Branch("11"); |
|
public static readonly DerObjectIdentifier Sha384WithRsaEncryption = Pkcs1Oid.Branch("12"); |
|
public static readonly DerObjectIdentifier Sha512WithRsaEncryption = Pkcs1Oid.Branch("13"); |
|
public static readonly DerObjectIdentifier Sha224WithRsaEncryption = Pkcs1Oid.Branch("14"); |
|
/** PKCS#1: 1.2.840.113549.1.1.15 */ |
|
public static readonly DerObjectIdentifier Sha512_224WithRSAEncryption = Pkcs1Oid.Branch("15"); |
|
/** PKCS#1: 1.2.840.113549.1.1.16 */ |
|
public static readonly DerObjectIdentifier Sha512_256WithRSAEncryption = Pkcs1Oid.Branch("16"); |
|
|
|
// |
|
// pkcs-3 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 3 } |
|
// |
|
public const string Pkcs3 = "1.2.840.113549.1.3"; |
|
|
|
public static readonly DerObjectIdentifier DhKeyAgreement = new DerObjectIdentifier(Pkcs3 + ".1"); |
|
|
|
// |
|
// pkcs-5 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 5 } |
|
// |
|
public const string Pkcs5 = "1.2.840.113549.1.5"; |
|
|
|
public static readonly DerObjectIdentifier PbeWithMD2AndDesCbc = new DerObjectIdentifier(Pkcs5 + ".1"); |
|
public static readonly DerObjectIdentifier PbeWithMD2AndRC2Cbc = new DerObjectIdentifier(Pkcs5 + ".4"); |
|
public static readonly DerObjectIdentifier PbeWithMD5AndDesCbc = new DerObjectIdentifier(Pkcs5 + ".3"); |
|
public static readonly DerObjectIdentifier PbeWithMD5AndRC2Cbc = new DerObjectIdentifier(Pkcs5 + ".6"); |
|
public static readonly DerObjectIdentifier PbeWithSha1AndDesCbc = new DerObjectIdentifier(Pkcs5 + ".10"); |
|
public static readonly DerObjectIdentifier PbeWithSha1AndRC2Cbc = new DerObjectIdentifier(Pkcs5 + ".11"); |
|
|
|
public static readonly DerObjectIdentifier IdPbeS2 = new DerObjectIdentifier(Pkcs5 + ".13"); |
|
public static readonly DerObjectIdentifier IdPbkdf2 = new DerObjectIdentifier(Pkcs5 + ".12"); |
|
|
|
// |
|
// encryptionAlgorithm OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) 3 } |
|
// |
|
public const string EncryptionAlgorithm = "1.2.840.113549.3"; |
|
|
|
public static readonly DerObjectIdentifier DesEde3Cbc = new DerObjectIdentifier(EncryptionAlgorithm + ".7"); |
|
public static readonly DerObjectIdentifier RC2Cbc = new DerObjectIdentifier(EncryptionAlgorithm + ".2"); |
|
public static readonly DerObjectIdentifier rc4 = new DerObjectIdentifier(EncryptionAlgorithm + ".4"); |
|
|
|
// |
|
// object identifiers for digests |
|
// |
|
public const string DigestAlgorithm = "1.2.840.113549.2"; |
|
|
|
// |
|
// md2 OBJECT IDENTIFIER ::= |
|
// {iso(1) member-body(2) US(840) rsadsi(113549) DigestAlgorithm(2) 2} |
|
// |
|
public static readonly DerObjectIdentifier MD2 = new DerObjectIdentifier(DigestAlgorithm + ".2"); |
|
|
|
// |
|
// md4 OBJECT IDENTIFIER ::= |
|
// {iso(1) member-body(2) US(840) rsadsi(113549) DigestAlgorithm(2) 4} |
|
// |
|
public static readonly DerObjectIdentifier MD4 = new DerObjectIdentifier(DigestAlgorithm + ".4"); |
|
|
|
// |
|
// md5 OBJECT IDENTIFIER ::= |
|
// {iso(1) member-body(2) US(840) rsadsi(113549) DigestAlgorithm(2) 5} |
|
// |
|
public static readonly DerObjectIdentifier MD5 = new DerObjectIdentifier(DigestAlgorithm + ".5"); |
|
|
|
public static readonly DerObjectIdentifier IdHmacWithSha1 = new DerObjectIdentifier(DigestAlgorithm + ".7"); |
|
public static readonly DerObjectIdentifier IdHmacWithSha224 = new DerObjectIdentifier(DigestAlgorithm + ".8"); |
|
public static readonly DerObjectIdentifier IdHmacWithSha256 = new DerObjectIdentifier(DigestAlgorithm + ".9"); |
|
public static readonly DerObjectIdentifier IdHmacWithSha384 = new DerObjectIdentifier(DigestAlgorithm + ".10"); |
|
public static readonly DerObjectIdentifier IdHmacWithSha512 = new DerObjectIdentifier(DigestAlgorithm + ".11"); |
|
|
|
// |
|
// pkcs-7 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 7 } |
|
// |
|
public const string Pkcs7 = "1.2.840.113549.1.7"; |
|
|
|
public static readonly DerObjectIdentifier Data = new DerObjectIdentifier(Pkcs7 + ".1"); |
|
public static readonly DerObjectIdentifier SignedData = new DerObjectIdentifier(Pkcs7 + ".2"); |
|
public static readonly DerObjectIdentifier EnvelopedData = new DerObjectIdentifier(Pkcs7 + ".3"); |
|
public static readonly DerObjectIdentifier SignedAndEnvelopedData = new DerObjectIdentifier(Pkcs7 + ".4"); |
|
public static readonly DerObjectIdentifier DigestedData = new DerObjectIdentifier(Pkcs7 + ".5"); |
|
public static readonly DerObjectIdentifier EncryptedData = new DerObjectIdentifier(Pkcs7 + ".6"); |
|
|
|
// |
|
// pkcs-9 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 9 } |
|
// |
|
public const string Pkcs9 = "1.2.840.113549.1.9"; |
|
|
|
public static readonly DerObjectIdentifier Pkcs9AtEmailAddress = new DerObjectIdentifier(Pkcs9 + ".1"); |
|
public static readonly DerObjectIdentifier Pkcs9AtUnstructuredName = new DerObjectIdentifier(Pkcs9 + ".2"); |
|
public static readonly DerObjectIdentifier Pkcs9AtContentType = new DerObjectIdentifier(Pkcs9 + ".3"); |
|
public static readonly DerObjectIdentifier Pkcs9AtMessageDigest = new DerObjectIdentifier(Pkcs9 + ".4"); |
|
public static readonly DerObjectIdentifier Pkcs9AtSigningTime = new DerObjectIdentifier(Pkcs9 + ".5"); |
|
public static readonly DerObjectIdentifier Pkcs9AtCounterSignature = new DerObjectIdentifier(Pkcs9 + ".6"); |
|
public static readonly DerObjectIdentifier Pkcs9AtChallengePassword = new DerObjectIdentifier(Pkcs9 + ".7"); |
|
public static readonly DerObjectIdentifier Pkcs9AtUnstructuredAddress = new DerObjectIdentifier(Pkcs9 + ".8"); |
|
public static readonly DerObjectIdentifier Pkcs9AtExtendedCertificateAttributes = new DerObjectIdentifier(Pkcs9 + ".9"); |
|
public static readonly DerObjectIdentifier Pkcs9AtSigningDescription = new DerObjectIdentifier(Pkcs9 + ".13"); |
|
public static readonly DerObjectIdentifier Pkcs9AtExtensionRequest = new DerObjectIdentifier(Pkcs9 + ".14"); |
|
public static readonly DerObjectIdentifier Pkcs9AtSmimeCapabilities = new DerObjectIdentifier(Pkcs9 + ".15"); |
|
public static readonly DerObjectIdentifier IdSmime = new DerObjectIdentifier(Pkcs9 + ".16"); |
|
|
|
public static readonly DerObjectIdentifier Pkcs9AtFriendlyName = new DerObjectIdentifier(Pkcs9 + ".20"); |
|
public static readonly DerObjectIdentifier Pkcs9AtLocalKeyID = new DerObjectIdentifier(Pkcs9 + ".21"); |
|
|
|
|
|
public static readonly DerObjectIdentifier X509CertType = new DerObjectIdentifier(Pkcs9 + ".22.1"); |
|
|
|
public const string CertTypes = Pkcs9 + ".22"; |
|
public static readonly DerObjectIdentifier X509Certificate = new DerObjectIdentifier(CertTypes + ".1"); |
|
public static readonly DerObjectIdentifier SdsiCertificate = new DerObjectIdentifier(CertTypes + ".2"); |
|
|
|
public const string CrlTypes = Pkcs9 + ".23"; |
|
public static readonly DerObjectIdentifier X509Crl = new DerObjectIdentifier(CrlTypes + ".1"); |
|
|
|
public static readonly DerObjectIdentifier IdAlg = IdSmime.Branch("3"); |
|
|
|
public static readonly DerObjectIdentifier IdAlgEsdh = IdAlg.Branch("5"); |
|
public static readonly DerObjectIdentifier IdAlgCms3DesWrap = IdAlg.Branch("6"); |
|
public static readonly DerObjectIdentifier IdAlgCmsRC2Wrap = IdAlg.Branch("7"); |
|
public static readonly DerObjectIdentifier IdAlgPwriKek = IdAlg.Branch("9"); |
|
public static readonly DerObjectIdentifier IdAlgSsdh = IdAlg.Branch("10"); |
|
|
|
/* |
|
* <pre> |
|
* -- RSA-KEM Key Transport Algorithm |
|
* |
|
* id-rsa-kem OID ::= { |
|
* iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) |
|
* pkcs-9(9) smime(16) alg(3) 14 |
|
* } |
|
* </pre> |
|
*/ |
|
public static readonly DerObjectIdentifier IdRsaKem = IdAlg.Branch("14"); |
|
|
|
/** |
|
* <pre> |
|
* id-alg-AEADChaCha20Poly1305 OBJECT IDENTIFIER ::= |
|
* { iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) |
|
* pkcs9(9) smime(16) alg(3) 18 } |
|
* |
|
* AEADChaCha20Poly1305Nonce ::= OCTET STRING (SIZE(12)) |
|
* </pre> |
|
*/ |
|
public static readonly DerObjectIdentifier IdAlgAeadChaCha20Poly1305 = IdAlg.Branch("18"); |
|
|
|
// |
|
// SMIME capability sub oids. |
|
// |
|
public static readonly DerObjectIdentifier PreferSignedData = Pkcs9AtSmimeCapabilities.Branch("1"); |
|
public static readonly DerObjectIdentifier CannotDecryptAny = Pkcs9AtSmimeCapabilities.Branch("2"); |
|
public static readonly DerObjectIdentifier SmimeCapabilitiesVersions = Pkcs9AtSmimeCapabilities.Branch("3"); |
|
|
|
// |
|
// other SMIME attributes |
|
// |
|
public static readonly DerObjectIdentifier IdAAReceiptRequest = IdSmime.Branch("2.1"); |
|
|
|
// |
|
// id-ct OBJECT IDENTIFIER ::= {iso(1) member-body(2) usa(840) |
|
// rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) ct(1)} |
|
// |
|
public const string IdCT = "1.2.840.113549.1.9.16.1"; |
|
|
|
public static readonly DerObjectIdentifier IdCTAuthData = new DerObjectIdentifier(IdCT + ".2"); |
|
public static readonly DerObjectIdentifier IdCTTstInfo = new DerObjectIdentifier(IdCT + ".4"); |
|
public static readonly DerObjectIdentifier IdCTCompressedData = new DerObjectIdentifier(IdCT + ".9"); |
|
public static readonly DerObjectIdentifier IdCTAuthEnvelopedData = new DerObjectIdentifier(IdCT + ".23"); |
|
public static readonly DerObjectIdentifier IdCTTimestampedData = new DerObjectIdentifier(IdCT + ".31"); |
|
|
|
// |
|
// id-cti OBJECT IDENTIFIER ::= {iso(1) member-body(2) usa(840) |
|
// rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) cti(6)} |
|
// |
|
public const string IdCti = "1.2.840.113549.1.9.16.6"; |
|
|
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfOrigin = new DerObjectIdentifier(IdCti + ".1"); |
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfReceipt = new DerObjectIdentifier(IdCti + ".2"); |
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfDelivery = new DerObjectIdentifier(IdCti + ".3"); |
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfSender = new DerObjectIdentifier(IdCti + ".4"); |
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfApproval = new DerObjectIdentifier(IdCti + ".5"); |
|
public static readonly DerObjectIdentifier IdCtiEtsProofOfCreation = new DerObjectIdentifier(IdCti + ".6"); |
|
|
|
// |
|
// id-aa OBJECT IDENTIFIER ::= {iso(1) member-body(2) usa(840) |
|
// rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) attributes(2)} |
|
// |
|
public const string IdAA = "1.2.840.113549.1.9.16.2"; |
|
public static readonly DerObjectIdentifier IdAAOid = new DerObjectIdentifier(IdAA); |
|
|
|
public static readonly DerObjectIdentifier IdAAContentHint = new DerObjectIdentifier(IdAA + ".4"); // See RFC 2634 |
|
public static readonly DerObjectIdentifier IdAAMsgSigDigest = new DerObjectIdentifier(IdAA + ".5"); |
|
public static readonly DerObjectIdentifier IdAAContentReference = new DerObjectIdentifier(IdAA + ".10"); |
|
|
|
/* |
|
* id-aa-encrypKeyPref OBJECT IDENTIFIER ::= {id-aa 11} |
|
* |
|
*/ |
|
public static readonly DerObjectIdentifier IdAAEncrypKeyPref = new DerObjectIdentifier(IdAA + ".11"); |
|
public static readonly DerObjectIdentifier IdAASigningCertificate = new DerObjectIdentifier(IdAA + ".12"); |
|
public static readonly DerObjectIdentifier IdAASigningCertificateV2 = new DerObjectIdentifier(IdAA + ".47"); |
|
|
|
public static readonly DerObjectIdentifier IdAAContentIdentifier = new DerObjectIdentifier(IdAA + ".7"); // See RFC 2634 |
|
|
|
/* |
|
* RFC 3126 |
|
*/ |
|
public static readonly DerObjectIdentifier IdAASignatureTimeStampToken = new DerObjectIdentifier(IdAA + ".14"); |
|
|
|
public static readonly DerObjectIdentifier IdAAEtsSigPolicyID = new DerObjectIdentifier(IdAA + ".15"); |
|
public static readonly DerObjectIdentifier IdAAEtsCommitmentType = new DerObjectIdentifier(IdAA + ".16"); |
|
public static readonly DerObjectIdentifier IdAAEtsSignerLocation = new DerObjectIdentifier(IdAA + ".17"); |
|
public static readonly DerObjectIdentifier IdAAEtsSignerAttr = new DerObjectIdentifier(IdAA + ".18"); |
|
public static readonly DerObjectIdentifier IdAAEtsOtherSigCert = new DerObjectIdentifier(IdAA + ".19"); |
|
public static readonly DerObjectIdentifier IdAAEtsContentTimestamp = new DerObjectIdentifier(IdAA + ".20"); |
|
public static readonly DerObjectIdentifier IdAAEtsCertificateRefs = new DerObjectIdentifier(IdAA + ".21"); |
|
public static readonly DerObjectIdentifier IdAAEtsRevocationRefs = new DerObjectIdentifier(IdAA + ".22"); |
|
public static readonly DerObjectIdentifier IdAAEtsCertValues = new DerObjectIdentifier(IdAA + ".23"); |
|
public static readonly DerObjectIdentifier IdAAEtsRevocationValues = new DerObjectIdentifier(IdAA + ".24"); |
|
public static readonly DerObjectIdentifier IdAAEtsEscTimeStamp = new DerObjectIdentifier(IdAA + ".25"); |
|
public static readonly DerObjectIdentifier IdAAEtsCertCrlTimestamp = new DerObjectIdentifier(IdAA + ".26"); |
|
public static readonly DerObjectIdentifier IdAAEtsArchiveTimestamp = new DerObjectIdentifier(IdAA + ".27"); |
|
|
|
/** PKCS#9: 1.2.840.113549.1.9.16.2.37 - <a href="https://tools.ietf.org/html/rfc4108#section-2.2.5">RFC 4108</a> */ |
|
public static readonly DerObjectIdentifier IdAADecryptKeyID = IdAAOid.Branch("37"); |
|
|
|
/** PKCS#9: 1.2.840.113549.1.9.16.2.38 - <a href="https://tools.ietf.org/html/rfc4108#section-2.2.6">RFC 4108</a> */ |
|
public static readonly DerObjectIdentifier IdAAImplCryptoAlgs = IdAAOid.Branch("38"); |
|
|
|
/** PKCS#9: 1.2.840.113549.1.9.16.2.54 <a href="https://tools.ietf.org/html/rfc7030">RFC7030</a>*/ |
|
public static readonly DerObjectIdentifier IdAAAsymmDecryptKeyID = IdAAOid.Branch("54"); |
|
|
|
/** PKCS#9: 1.2.840.113549.1.9.16.2.43 <a href="https://tools.ietf.org/html/rfc7030">RFC7030</a>*/ |
|
public static readonly DerObjectIdentifier IdAAImplCompressAlgs = IdAAOid.Branch("43"); |
|
/** PKCS#9: 1.2.840.113549.1.9.16.2.40 <a href="https://tools.ietf.org/html/rfc7030">RFC7030</a>*/ |
|
public static readonly DerObjectIdentifier IdAACommunityIdentifiers = IdAAOid.Branch("40"); |
|
|
|
|
|
public static readonly DerObjectIdentifier IdAASigPolicyID = IdAAEtsSigPolicyID; |
|
|
|
public static readonly DerObjectIdentifier IdAACommitmentType = IdAAEtsCommitmentType; |
|
|
|
public static readonly DerObjectIdentifier IdAASignerLocation = IdAAEtsSignerLocation; |
|
|
|
public static readonly DerObjectIdentifier IdAAOtherSigCert = IdAAEtsOtherSigCert; |
|
|
|
// |
|
// id-spq OBJECT IDENTIFIER ::= {iso(1) member-body(2) usa(840) |
|
// rsadsi(113549) pkcs(1) pkcs-9(9) smime(16) id-spq(5)} |
|
// |
|
public const string IdSpq = "1.2.840.113549.1.9.16.5"; |
|
|
|
public static readonly DerObjectIdentifier IdSpqEtsUri = new DerObjectIdentifier(IdSpq + ".1"); |
|
public static readonly DerObjectIdentifier IdSpqEtsUNotice = new DerObjectIdentifier(IdSpq + ".2"); |
|
|
|
// |
|
// pkcs-12 OBJECT IDENTIFIER ::= { |
|
// iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 12 } |
|
// |
|
public const string Pkcs12 = "1.2.840.113549.1.12"; |
|
public const string BagTypes = Pkcs12 + ".10.1"; |
|
|
|
public static readonly DerObjectIdentifier KeyBag = new DerObjectIdentifier(BagTypes + ".1"); |
|
public static readonly DerObjectIdentifier Pkcs8ShroudedKeyBag = new DerObjectIdentifier(BagTypes + ".2"); |
|
public static readonly DerObjectIdentifier CertBag = new DerObjectIdentifier(BagTypes + ".3"); |
|
public static readonly DerObjectIdentifier CrlBag = new DerObjectIdentifier(BagTypes + ".4"); |
|
public static readonly DerObjectIdentifier SecretBag = new DerObjectIdentifier(BagTypes + ".5"); |
|
public static readonly DerObjectIdentifier SafeContentsBag = new DerObjectIdentifier(BagTypes + ".6"); |
|
|
|
public const string Pkcs12PbeIds = Pkcs12 + ".1"; |
|
|
|
public static readonly DerObjectIdentifier PbeWithShaAnd128BitRC4 = new DerObjectIdentifier(Pkcs12PbeIds + ".1"); |
|
public static readonly DerObjectIdentifier PbeWithShaAnd40BitRC4 = new DerObjectIdentifier(Pkcs12PbeIds + ".2"); |
|
public static readonly DerObjectIdentifier PbeWithShaAnd3KeyTripleDesCbc = new DerObjectIdentifier(Pkcs12PbeIds + ".3"); |
|
public static readonly DerObjectIdentifier PbeWithShaAnd2KeyTripleDesCbc = new DerObjectIdentifier(Pkcs12PbeIds + ".4"); |
|
public static readonly DerObjectIdentifier PbeWithShaAnd128BitRC2Cbc = new DerObjectIdentifier(Pkcs12PbeIds + ".5"); |
|
public static readonly DerObjectIdentifier PbewithShaAnd40BitRC2Cbc = new DerObjectIdentifier(Pkcs12PbeIds + ".6"); |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|