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

📄 eacobjectidentifiers.java

📁 kmlnjlkj nlkjlkjkljl okopokipoipo oipipipo i
💻 JAVA
字号:
package org.bouncycastle.asn1.eac;import org.bouncycastle.asn1.DERObjectIdentifier;public interface EACObjectIdentifiers{    // bsi-de OBJECT IDENTIFIER ::= {    //         itu-t(0) identified-organization(4) etsi(0)    //         reserved(127) etsi-identified-organization(0) 7    //     }    static final DERObjectIdentifier    bsi_de      = new DERObjectIdentifier("0.4.0.127.0.7");    // id-PK OBJECT IDENTIFIER ::= {    //         bsi-de protocols(2) smartcard(2) 1    //     }    static final DERObjectIdentifier    id_PK = new DERObjectIdentifier(bsi_de + ".2.2.1");    static final DERObjectIdentifier    id_PK_DH = new DERObjectIdentifier(id_PK + ".1");    static final DERObjectIdentifier    id_PK_ECDH = new DERObjectIdentifier(id_PK + ".2");    // id-CA OBJECT IDENTIFIER ::= {    //         bsi-de protocols(2) smartcard(2) 3    //     }    static final DERObjectIdentifier    id_CA = new DERObjectIdentifier(bsi_de + ".2.2.3");    static final DERObjectIdentifier    id_CA_DH = new DERObjectIdentifier(id_CA + ".1");    static final DERObjectIdentifier    id_CA_DH_3DES_CBC_CBC = new DERObjectIdentifier(id_CA_DH + ".1");    static final DERObjectIdentifier    id_CA_ECDH = new DERObjectIdentifier(id_CA + ".2");    static final DERObjectIdentifier    id_CA_ECDH_3DES_CBC_CBC = new DERObjectIdentifier(id_CA_ECDH + ".1");    //    // id-TA OBJECT IDENTIFIER ::= {    //     bsi-de protocols(2) smartcard(2) 2    // }    static final DERObjectIdentifier    id_TA = new DERObjectIdentifier(bsi_de + ".2.2.2");    static final DERObjectIdentifier    id_TA_RSA = new DERObjectIdentifier(id_TA + ".1");    static final DERObjectIdentifier    id_TA_RSA_v1_5_SHA_1 = new DERObjectIdentifier(id_TA_RSA + ".1");    static final DERObjectIdentifier    id_TA_RSA_v1_5_SHA_256 = new DERObjectIdentifier(id_TA_RSA + ".2");    static final DERObjectIdentifier    id_TA_RSA_PSS_SHA_1 = new DERObjectIdentifier(id_TA_RSA + ".3");    static final DERObjectIdentifier    id_TA_RSA_PSS_SHA_256 = new DERObjectIdentifier(id_TA_RSA + ".4");    static final DERObjectIdentifier    id_TA_ECDSA = new DERObjectIdentifier(id_TA + ".2");    static final DERObjectIdentifier    id_TA_ECDSA_SHA_1 = new DERObjectIdentifier(id_TA_ECDSA + ".1");    static final DERObjectIdentifier    id_TA_ECDSA_SHA_224 = new DERObjectIdentifier(id_TA_ECDSA + ".2");    static final DERObjectIdentifier    id_TA_ECDSA_SHA_256 = new DERObjectIdentifier(id_TA_ECDSA + ".3");    static final DERObjectIdentifier    id_TA_ECDSA_SHA_384 = new DERObjectIdentifier(id_TA_ECDSA + ".4");    static final DERObjectIdentifier    id_TA_ECDSA_SHA_512 = new DERObjectIdentifier(id_TA_ECDSA + ".5");    /**     * id-EAC-ePassport OBJECT IDENTIFIER ::= {     * bsi-de applications(3) mrtd(1) roles(2) 1}     */    static final DERObjectIdentifier id_EAC_ePassport = new DERObjectIdentifier(bsi_de + ".3.1.2.1");}

⌨️ 快捷键说明

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