Searched defs:algorithms (Results 1 - 10 of 10) sorted by relevance

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DDefaultSignatureAlgorithmIdentifierFinder.java27 private static Map algorithms = new HashMap(); field in class:DefaultSignatureAlgorithmIdentifierFinder
45 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption);
46 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption);
48 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
49 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
50 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
51 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
52 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
53 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
54 algorithms
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DKeyAgreementSpi.java35 private static final Hashtable algorithms = new Hashtable(); field in class:KeyAgreementSpi
44 algorithms.put("DES", i64);
45 algorithms.put("DESEDE", i192);
46 algorithms.put("BLOWFISH", i128);
47 algorithms.put("AES", i256);
161 if (algorithms.containsKey(algKey))
163 Integer length = (Integer)algorithms.get(algKey);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DKeyAgreementSpi.java59 private static final Hashtable algorithms = new Hashtable(); field in class:KeyAgreementSpi
67 algorithms.put(NISTObjectIdentifiers.id_aes128_CBC.getId(), i128);
68 algorithms.put(NISTObjectIdentifiers.id_aes192_CBC.getId(), i192);
69 algorithms.put(NISTObjectIdentifiers.id_aes256_CBC.getId(), i256);
70 algorithms.put(NISTObjectIdentifiers.id_aes128_wrap.getId(), i128);
71 algorithms.put(NISTObjectIdentifiers.id_aes192_wrap.getId(), i192);
72 algorithms.put(NISTObjectIdentifiers.id_aes256_wrap.getId(), i256);
73 algorithms.put(PKCSObjectIdentifiers.id_alg_CMS3DESwrap.getId(), i192);
196 // if (!algorithms.containsKey(algorithm))
201 // int keySize = ((Integer)algorithms
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
H A DPKCS10CertificationRequest.java80 private static Hashtable algorithms = new Hashtable(); field in class:PKCS10CertificationRequest
90 // algorithms.put("MD2WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.2"));
91 // algorithms.put("MD2WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.2"));
93 algorithms.put("MD5WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
94 algorithms.put("MD5WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
95 algorithms.put("RSAWITHMD5", new DERObjectIdentifier("1.2.840.113549.1.1.4"));
96 algorithms.put("SHA1WITHRSAENCRYPTION", new DERObjectIdentifier("1.2.840.113549.1.1.5"));
97 algorithms.put("SHA1WITHRSA", new DERObjectIdentifier("1.2.840.113549.1.1.5"));
98 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
99 algorithms
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509Util.java45 private static Hashtable algorithms = new Hashtable(); field in class:X509Util
52 // algorithms.put("MD2WITHRSAENCRYPTION", PKCSObjectIdentifiers.md2WithRSAEncryption);
53 // algorithms.put("MD2WITHRSA", PKCSObjectIdentifiers.md2WithRSAEncryption);
55 algorithms.put("MD5WITHRSAENCRYPTION", PKCSObjectIdentifiers.md5WithRSAEncryption);
56 algorithms.put("MD5WITHRSA", PKCSObjectIdentifiers.md5WithRSAEncryption);
57 algorithms.put("SHA1WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha1WithRSAEncryption);
58 algorithms.put("SHA1WITHRSA", PKCSObjectIdentifiers.sha1WithRSAEncryption);
59 algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
60 algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
61 algorithms
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DContentSecurityPolicy.cpp457 void ContentSecurityPolicy::usesScriptHashAlgorithms(uint8_t algorithms) argument
459 m_scriptHashAlgorithmsUsed |= algorithms;
462 void ContentSecurityPolicy::usesStyleHashAlgorithms(uint8_t algorithms) argument
464 m_styleHashAlgorithmsUsed |= algorithms;
/external/chromium_org/net/third_party/nss/ssl/
H A Dssl3ext.c2219 SECItem algorithms; local
2231 rv = ssl3_ConsumeHandshakeVariable(ss, &algorithms, 2, &data->data,
2237 if (data->len != 0 || algorithms.len == 0 || (algorithms.len & 1) != 0) {
2242 numAlgorithms = algorithms.len/2;
2244 /* We don't care to process excessive numbers of algorithms. */
2256 b = algorithms.data;
H A Dssl3con.c7106 const SECItem *algorithms)
7132 for (i = 0; i < algorithms->len; i += 2) {
7133 if (algorithms->data[i+1] == sigAlg) {
7134 if (algorithms->data[i] == tls_hash_sha1) {
7136 } else if (algorithms->data[i] == tls_hash_sha256) {
7178 SECItem algorithms = {siBuffer, NULL, 0}; local
7212 rv = ssl3_ConsumeHandshakeVariable(ss, &algorithms, 2, &b, &length);
7219 if (algorithms.len == 0 || (algorithms.len & 1) != 0)
7285 /* XXX Should pass cert_types and algorithms i
7105 ssl3_DestroyBackupHandshakeHashIfNotNeeded(sslSocket *ss, const SECItem *algorithms) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/google-tv-pairing-protocol/java/jar/
H A Dbcprov-jdk15-143.jarMETA-INF/MANIFEST.MF META-INF/BCKEY.SF META-INF/BCKEY.DSA META ...

Completed in 232 milliseconds