⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pkcsobjectidentifiers.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
package org.bouncycastle.asn1.pkcs;import org.bouncycastle.asn1.DERObjectIdentifier;public interface PKCSObjectIdentifiers{    //    // pkcs-1 OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 1 }    //    static final String                 pkcs_1                    = "1.2.840.113549.1.1";    static final DERObjectIdentifier    rsaEncryption             = new DERObjectIdentifier(pkcs_1 + ".1");    static final DERObjectIdentifier    md2WithRSAEncryption      = new DERObjectIdentifier(pkcs_1 + ".2");    static final DERObjectIdentifier    md4WithRSAEncryption      = new DERObjectIdentifier(pkcs_1 + ".3");    static final DERObjectIdentifier    md5WithRSAEncryption      = new DERObjectIdentifier(pkcs_1 + ".4");    static final DERObjectIdentifier    sha1WithRSAEncryption     = new DERObjectIdentifier(pkcs_1 + ".5");    static final DERObjectIdentifier    srsaOAEPEncryptionSET     = new DERObjectIdentifier(pkcs_1 + ".6");    static final DERObjectIdentifier    id_RSAES_OAEP             = new DERObjectIdentifier(pkcs_1 + ".7");    static final DERObjectIdentifier    id_mgf1                   = new DERObjectIdentifier(pkcs_1 + ".8");    static final DERObjectIdentifier    id_pSpecified             = new DERObjectIdentifier(pkcs_1 + ".9");    static final DERObjectIdentifier    id_RSASSA_PSS             = new DERObjectIdentifier(pkcs_1 + ".10");    static final DERObjectIdentifier    sha256WithRSAEncryption   = new DERObjectIdentifier(pkcs_1 + ".11");    static final DERObjectIdentifier    sha384WithRSAEncryption   = new DERObjectIdentifier(pkcs_1 + ".12");    static final DERObjectIdentifier    sha512WithRSAEncryption   = new DERObjectIdentifier(pkcs_1 + ".13");    static final DERObjectIdentifier    sha224WithRSAEncryption   = new DERObjectIdentifier(pkcs_1 + ".14");    //    // pkcs-3 OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 3 }    //    static final String                 pkcs_3                  = "1.2.840.113549.1.3";    static final DERObjectIdentifier    dhKeyAgreement          = new DERObjectIdentifier(pkcs_3 + ".1");    //    // pkcs-5 OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 5 }    //    static final String                 pkcs_5                  = "1.2.840.113549.1.5";    static final DERObjectIdentifier    pbeWithMD2AndDES_CBC    = new DERObjectIdentifier(pkcs_5 + ".1");    static final DERObjectIdentifier    pbeWithMD2AndRC2_CBC    = new DERObjectIdentifier(pkcs_5 + ".4");    static final DERObjectIdentifier    pbeWithMD5AndDES_CBC    = new DERObjectIdentifier(pkcs_5 + ".3");    static final DERObjectIdentifier    pbeWithMD5AndRC2_CBC    = new DERObjectIdentifier(pkcs_5 + ".6");    static final DERObjectIdentifier    pbeWithSHA1AndDES_CBC   = new DERObjectIdentifier(pkcs_5 + ".10");    static final DERObjectIdentifier    pbeWithSHA1AndRC2_CBC   = new DERObjectIdentifier(pkcs_5 + ".11");    static final DERObjectIdentifier    id_PBES2                = new DERObjectIdentifier(pkcs_5 + ".13");    static final DERObjectIdentifier    id_PBKDF2               = new DERObjectIdentifier(pkcs_5 + ".12");    //    // encryptionAlgorithm OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) 3 }    //    static final String                 encryptionAlgorithm     = "1.2.840.113549.3";    static final DERObjectIdentifier    des_EDE3_CBC            = new DERObjectIdentifier(encryptionAlgorithm + ".7");    static final DERObjectIdentifier    RC2_CBC                 = new DERObjectIdentifier(encryptionAlgorithm + ".2");    //    // object identifiers for digests    //    static final String                 digestAlgorithm     = "1.2.840.113549.2";    //    // md2 OBJECT IDENTIFIER ::=    //      {iso(1) member-body(2) US(840) rsadsi(113549) digestAlgorithm(2) 2}    //    static final DERObjectIdentifier    md2                     = new DERObjectIdentifier(digestAlgorithm + ".2");    //    // md4 OBJECT IDENTIFIER ::=    //      {iso(1) member-body(2) US(840) rsadsi(113549) digestAlgorithm(2) 4}    //    static final DERObjectIdentifier    md4 = new DERObjectIdentifier(digestAlgorithm + ".4");    //    // md5 OBJECT IDENTIFIER ::=    //      {iso(1) member-body(2) US(840) rsadsi(113549) digestAlgorithm(2) 5}    //    static final DERObjectIdentifier    md5                     = new DERObjectIdentifier(digestAlgorithm + ".5");    static final DERObjectIdentifier    id_hmacWithSHA1         = new DERObjectIdentifier(digestAlgorithm + ".7");    static final DERObjectIdentifier    id_hmacWithSHA224       = new DERObjectIdentifier(digestAlgorithm + ".8");    static final DERObjectIdentifier    id_hmacWithSHA256       = new DERObjectIdentifier(digestAlgorithm + ".9");    static final DERObjectIdentifier    id_hmacWithSHA384       = new DERObjectIdentifier(digestAlgorithm + ".10");    static final DERObjectIdentifier    id_hmacWithSHA512       = new DERObjectIdentifier(digestAlgorithm + ".11");    //    // pkcs-7 OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 7 }    //    static final String                 pkcs_7                  = "1.2.840.113549.1.7";    static final DERObjectIdentifier    data                    = new DERObjectIdentifier(pkcs_7 + ".1");    static final DERObjectIdentifier    signedData              = new DERObjectIdentifier(pkcs_7 + ".2");    static final DERObjectIdentifier    envelopedData           = new DERObjectIdentifier(pkcs_7 + ".3");    static final DERObjectIdentifier    signedAndEnvelopedData  = new DERObjectIdentifier(pkcs_7 + ".4");    static final DERObjectIdentifier    digestedData            = new DERObjectIdentifier(pkcs_7 + ".5");    static final DERObjectIdentifier    encryptedData           = new DERObjectIdentifier(pkcs_7 + ".6");    //    // pkcs-9 OBJECT IDENTIFIER ::= {    //       iso(1) member-body(2) us(840) rsadsi(113549) pkcs(1) 9 }    //    static final String                 pkcs_9                  = "1.2.840.113549.1.9";    static final DERObjectIdentifier    pkcs_9_at_emailAddress  = new DERObjectIdentifier(pkcs_9 + ".1");    static final DERObjectIdentifier    pkcs_9_at_unstructuredName = new DERObjectIdentifier(pkcs_9 + ".2");    static final DERObjectIdentifier    pkcs_9_at_contentType = new DERObjectIdentifier(pkcs_9 + ".3");    static final DERObjectIdentifier    pkcs_9_at_messageDigest = new DERObjectIdentifier(pkcs_9 + ".4");    static final DERObjectIdentifier    pkcs_9_at_signingTime = new DERObjectIdentifier(pkcs_9 + ".5");    static final DERObjectIdentifier    pkcs_9_at_counterSignature = new DERObjectIdentifier(pkcs_9 + ".6");    static final DERObjectIdentifier    pkcs_9_at_challengePassword = new DERObjectIdentifier(pkcs_9 + ".7");    static final DERObjectIdentifier    pkcs_9_at_unstructuredAddress = new DERObjectIdentifier(pkcs_9 + ".8");    static final DERObjectIdentifier    pkcs_9_at_extendedCertificateAttributes = new DERObjectIdentifier(pkcs_9 + ".9");    static final DERObjectIdentifier    pkcs_9_at_signingDescription = new DERObjectIdentifier(pkcs_9 + ".13");    static final DERObjectIdentifier    pkcs_9_at_extensionRequest = new DERObjectIdentifier(pkcs_9 + ".14");    static final DERObjectIdentifier    pkcs_9_at_smimeCapabilities = new DERObjectIdentifier(pkcs_9 + ".15");    static final DERObjectIdentifier    pkcs_9_at_friendlyName  = new DERObjectIdentifier(pkcs_9 + ".20");    static final DERObjectIdentifier    pkcs_9_at_localKeyId    = new DERObjectIdentifier(pkcs_9 + ".21");    /** @deprecated use x509Certificate instead */    static final DERObjectIdentifier    x509certType            = new DERObjectIdentifier(pkcs_9 + ".22.1");    static final String                 certTypes               = pkcs_9 + ".22";

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -