/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
BouncyCastleProvider.java | 15 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 171 // put("AlgorithmParameterGenerator." + PKCSObjectIdentifiers.des_EDE3_CBC, "org.bouncycastle.jce.provider.JDKAlgorithmParameterGenerator$DES"); 198 // put("Alg.Alias.AlgorithmParameters." + PKCSObjectIdentifiers.des_EDE3_CBC, "DESede"); 201 // put("AlgorithmParameters." + PKCSObjectIdentifiers.id_PBKDF2, "org.bouncycastle.jce.provider.JDKAlgorithmParameters$PBKDF2"); 244 put("Alg.Alias.AlgorithmParameters." + PKCSObjectIdentifiers.id_RSAES_OAEP, "OAEP"); 249 // put("Alg.Alias.AlgorithmParameters." + PKCSObjectIdentifiers.id_RSASSA_PSS, "PSS"); 329 // put("Cipher." + PKCSObjectIdentifiers.id_RSAES_OAEP, "org.bouncycastle.jce.provider.JCERSACipher$OAEPPadding"); 416 // put("Alg.Alias.Cipher." + PKCSObjectIdentifiers.pbeWithMD2AndDES_CBC, "PBEWITHMD2ANDDES"); 417 // put("Alg.Alias.Cipher." + PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC, "PBEWITHMD2ANDRC2"); 419 put("Alg.Alias.Cipher." + PKCSObjectIdentifiers.pbeWithMD5AndDES_CBC, "PBEWITHMD5ANDDES") [all...] |
RSAUtil.java | 8 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 22 return algOid.equals(PKCSObjectIdentifiers.rsaEncryption) 24 || algOid.equals(PKCSObjectIdentifiers.id_RSASSA_PSS) 25 || algOid.equals(PKCSObjectIdentifiers.id_RSAES_OAEP);
|
JCESecretKeyFactory.java | 15 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 262 // super("PBEwithMD2andDES", PKCSObjectIdentifiers.pbeWithMD2AndDES_CBC, true, PKCS5S1, MD2, 64, 64); 274 // super("PBEwithMD2andRC2", PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC, true, PKCS5S1, MD2, 64, 64); 287 super("PBEwithMD5andDES", PKCSObjectIdentifiers.pbeWithMD5AndDES_CBC, true, PKCS5S1, MD5, 64, 64); 299 super("PBEwithMD5andRC2", PKCSObjectIdentifiers.pbeWithMD5AndRC2_CBC, true, PKCS5S1, MD5, 64, 64); 311 super("PBEwithSHA1andDES", PKCSObjectIdentifiers.pbeWithSHA1AndDES_CBC, true, PKCS5S1, SHA1, 64, 64); 323 super("PBEwithSHA1andRC2", PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC, true, PKCS5S1, SHA1, 64, 64); 335 super("PBEwithSHAandDES3Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd3_KeyTripleDES_CBC, true, PKCS12, SHA1, 192, 64); 347 super("PBEwithSHAandDES2Key-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd2_KeyTripleDES_CBC, true, PKCS12, SHA1, 128, 64); 359 super("PBEwithSHAand128BitRC2-CBC", PKCSObjectIdentifiers.pbeWithSHAAnd128BitRC2_CBC, true, PKCS12, SHA1, 128, 64) [all...] |
JCEDigestUtil.java | 11 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 39 md5.add(PKCSObjectIdentifiers.md5.getId()); 63 oids.put("MD5", PKCSObjectIdentifiers.md5); 64 oids.put(PKCSObjectIdentifiers.md5.getId(), PKCSObjectIdentifiers.md5);
|
DSABase.java | 10 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 17 implements PKCSObjectIdentifiers, X509ObjectIdentifiers
|
JCEDHPrivateKey.java | 18 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 66 if (id.equals(PKCSObjectIdentifiers.dhKeyAgreement)) 126 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(getX()));
|
JCEDHPublicKey.java | 16 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 82 if (id.equals(PKCSObjectIdentifiers.dhKeyAgreement) || isPKCSParam(seq)) 124 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.dhKeyAgreement, new DHParameter(dhSpec.getP(), dhSpec.getG(), dhSpec.getL()).getDERObject()), new DERInteger(y));
|
JCERSAPrivateKey.java | 8 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 81 PrivateKeyInfo info = new PrivateKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPrivateKeyStructure(getModulus(), ZERO, getPrivateExponent(), ZERO, ZERO, ZERO, ZERO, ZERO).getDERObject());
|
JCERSAPublicKey.java | 5 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 94 SubjectPublicKeyInfo info = new SubjectPublicKeyInfo(new AlgorithmIdentifier(PKCSObjectIdentifiers.rsaEncryption, DERNull.INSTANCE), new RSAPublicKeyStructure(getModulus(), getPublicExponent()).getDERObject());
|
X509SignatureUtil.java | 11 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 72 // if (sigAlgId.getObjectId().equals(PKCSObjectIdentifiers.id_RSASSA_PSS)) 97 if (PKCSObjectIdentifiers.md5.equals(digestAlgOID))
|
JDKDSASigner.java | 19 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 40 implements PKCSObjectIdentifiers, X509ObjectIdentifiers
|
/external/bouncycastle/src/main/java/org/bouncycastle/x509/ |
X509Util.java | 31 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 48 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption); 49 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption); 51 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption); 52 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption); 53 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption); 54 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption); 56 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption); 57 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption); 59 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/openssl/ |
PEMUtilities.java | 21 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 35 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithMD2AndDES_CBC); 36 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC); 37 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithMD5AndDES_CBC); 38 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithMD5AndRC2_CBC); 39 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithSHA1AndDES_CBC); 40 PKCS5_SCHEME_1.add(PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC); 42 PKCS5_SCHEME_2.add(PKCSObjectIdentifiers.id_PBES2); 43 PKCS5_SCHEME_2.add(PKCSObjectIdentifiers.des_EDE3_CBC); 49 KEYSIZES.put(PKCSObjectIdentifiers.des_EDE3_CBC.getId(), Integer.valueOf(192)) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/ |
PKCS10CertificationRequest.java | 38 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 94 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption); 95 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption); 97 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption); 98 algorithms.put("SHA256WITHRSA", PKCSObjectIdentifiers.sha256WithRSAEncryption); 99 algorithms.put("SHA384WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha384WithRSAEncryption); 100 algorithms.put("SHA384WITHRSA", PKCSObjectIdentifiers.sha384WithRSAEncryption); 101 algorithms.put("SHA512WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha512WithRSAEncryption); 102 algorithms.put("SHA512WITHRSA", PKCSObjectIdentifiers.sha512WithRSAEncryption); 103 algorithms.put("SHA1WITHRSAANDMGF1", PKCSObjectIdentifiers.id_RSASSA_PSS) [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509CertificateStructure.java | 9 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 23 implements X509ObjectIdentifiers, PKCSObjectIdentifiers
|
TBSCertificateStructure.java | 10 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 34 implements X509ObjectIdentifiers, PKCSObjectIdentifiers
|
/frameworks/base/core/java/android/webkit/ |
CertTool.java | 19 import com.android.org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 37 new AlgorithmIdentifier(PKCSObjectIdentifiers.md5WithRSAEncryption);
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/ |
RSAESOAEPparams.java | 25 public final static AlgorithmIdentifier DEFAULT_MASK_GEN_FUNCTION = new AlgorithmIdentifier(PKCSObjectIdentifiers.id_mgf1, DEFAULT_HASH_ALGORITHM); 26 public final static AlgorithmIdentifier DEFAULT_P_SOURCE_ALGORITHM = new AlgorithmIdentifier(PKCSObjectIdentifiers.id_pSpecified, new DEROctetString(new byte[0]));
|
ContentInfo.java | 17 implements PKCSObjectIdentifiers
|
PBES2Algorithms.java | 16 extends AlgorithmIdentifier implements PKCSObjectIdentifiers
|
PBES2Parameters.java | 14 implements PKCSObjectIdentifiers
|
Pfx.java | 17 implements PKCSObjectIdentifiers
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/ |
RSADigestSigner.java | 6 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 50 // oidMap.put("MD2", PKCSObjectIdentifiers.md2); 51 // oidMap.put("MD4", PKCSObjectIdentifiers.md4); 53 oidMap.put("MD5", PKCSObjectIdentifiers.md5);
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/symmetric/ |
DESede.java | 13 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 276 // put("Cipher." + PKCSObjectIdentifiers.des_EDE3_CBC, "org.bouncycastle.jce.provider.symmetric.DESede$CBC"); 281 put("Alg.Alias.Cipher." + PKCSObjectIdentifiers.id_alg_CMS3DESwrap, "DESEDEWRAP"); 289 // put("KeyGenerator." + PKCSObjectIdentifiers.des_EDE3_CBC, "org.bouncycastle.jce.provider.symmetric.DESede$KeyGenerator3");
|
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/util/ |
PrivateKeyFactory.java | 20 import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers; 88 if (algId.getAlgorithm().equals(PKCSObjectIdentifiers.rsaEncryption)) 100 else if (algId.getObjectId().equals(PKCSObjectIdentifiers.dhKeyAgreement))
|