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;
40 md5.add(PKCSObjectIdentifiers.md5.getId());
62 oids.put("MD5", PKCSObjectIdentifiers.md5);
63 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 21 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
79 algorithms.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), i192);
80 algorithms.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), i192);
83 oids.put("DESEDE", PKCSObjectIdentifiers.des_EDE3_CBC);
90 des.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), "DES");
91 des.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), "DES");
  /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());
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PKCSObjectIdentifiers.java 10 public interface PKCSObjectIdentifiers
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/keystore/pkcs12/
PKCS12KeyStoreSpi.java 79 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
111 implements PKCSObjectIdentifiers, X509ObjectIdentifiers, BCKeyStore
605 if (algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds))
629 else if (algorithm.equals(PKCSObjectIdentifiers.id_PBES2))
688 if (algorithm.on(PKCSObjectIdentifiers.pkcs_12PbeIds))
713 else if (algorithm.equals(PKCSObjectIdentifiers.id_PBES2))
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 

Completed in 600 milliseconds