HomeSort by relevance Sort by last modified time
    Searched defs:PKCSObjectIdentifiers (Results 1 - 14 of 14) sorted by null

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
DefaultCMSSignatureEncryptionAlgorithmFinder.java 8 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
20 // RSA_PKCS1d5.add(PKCSObjectIdentifiers.md2WithRSAEncryption);
21 // RSA_PKCS1d5.add(PKCSObjectIdentifiers.md4WithRSAEncryption);
23 RSA_PKCS1d5.add(PKCSObjectIdentifiers.md5WithRSAEncryption);
24 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha1WithRSAEncryption);
25 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha224WithRSAEncryption);
26 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha256WithRSAEncryption);
27 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha384WithRSAEncryption);
28 RSA_PKCS1d5.add(PKCSObjectIdentifiers.sha512WithRSAEncryption);
47 return new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE)
    [all...]
CMSSignedHelper.java 23 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
65 // addEntries(PKCSObjectIdentifiers.md2WithRSAEncryption, "MD2", "RSA");
66 // addEntries(PKCSObjectIdentifiers.md4WithRSAEncryption, "MD4", "RSA");
68 addEntries(PKCSObjectIdentifiers.md5WithRSAEncryption, "MD5", "RSA");
69 addEntries(PKCSObjectIdentifiers.sha1WithRSAEncryption, "SHA1", "RSA");
70 addEntries(PKCSObjectIdentifiers.sha224WithRSAEncryption, "SHA224", "RSA");
71 addEntries(PKCSObjectIdentifiers.sha256WithRSAEncryption, "SHA256", "RSA");
72 addEntries(PKCSObjectIdentifiers.sha384WithRSAEncryption, "SHA384", "RSA");
73 addEntries(PKCSObjectIdentifiers.sha512WithRSAEncryption, "SHA512", "RSA");
91 encryptionAlgs.put(PKCSObjectIdentifiers.rsaEncryption.getId(), "RSA")
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DefaultSignatureAlgorithmIdentifierFinder.java 19 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
35 private static final ASN1ObjectIdentifier ENCRYPTION_RSA = PKCSObjectIdentifiers.rsaEncryption;
38 private static final ASN1ObjectIdentifier ENCRYPTION_RSA_PSS = PKCSObjectIdentifiers.id_RSASSA_PSS;
47 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption);
48 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption);
50 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
51 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
52 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
53 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
54 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
SecretKeyUtil.java 9 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
18 keySizes.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), Integers.valueOf(192));
DigestFactory.java 11 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
45 md5.add(PKCSObjectIdentifiers.md5.getId());
77 oids.put("MD5", PKCSObjectIdentifiers.md5);
78 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
BaseAgreementSpi.java 24 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
83 keySizes.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), i192);
84 keySizes.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), i192);
87 keySizes.put(PKCSObjectIdentifiers.id_hmacWithSHA1.getId(), Integers.valueOf(160));
88 keySizes.put(PKCSObjectIdentifiers.id_hmacWithSHA256.getId(), i256);
89 keySizes.put(PKCSObjectIdentifiers.id_hmacWithSHA384.getId(), Integers.valueOf(384));
90 keySizes.put(PKCSObjectIdentifiers.id_hmacWithSHA512.getId(), Integers.valueOf(512));
92 defaultOids.put("DESEDE", PKCSObjectIdentifiers.des_EDE3_CBC);
109 nameTable.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), "DESede");
110 nameTable.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), "DESede")
    [all...]
  /system/extras/verity/
Utils.java 55 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
72 ID_TO_ALG.put(PKCSObjectIdentifiers.sha1WithRSAEncryption.getId(), "SHA1withRSA");
73 ID_TO_ALG.put(PKCSObjectIdentifiers.sha256WithRSAEncryption.getId(), "SHA256withRSA");
74 ID_TO_ALG.put(PKCSObjectIdentifiers.sha512WithRSAEncryption.getId(), "SHA512withRSA");
79 ALG_TO_ID.put("SHA1withRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption.getId());
80 ALG_TO_ID.put("SHA256withRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption.getId());
81 ALG_TO_ID.put("SHA512withRSA", PKCSObjectIdentifiers.sha512WithRSAEncryption.getId());