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

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
hashlib.py 18 More algorithms may be available on your platform but the above are
61 algorithms = __always_supported variable
63 __all__ = __always_supported + ('new', 'algorithms')
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
KeyAgreementSpi.java 35 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);
144 if (algorithms.containsKey(algKey))
146 Integer length = (Integer)algorithms.get(algKey);
  /external/skia/tests/
ChecksumTest.cpp 109 const Algorithm algorithms[] = { kSkChecksum, kMurmur3 }; local
110 for (size_t i = 0; i < SK_ARRAY_COUNT(algorithms); i++) {
111 fWhichAlgorithm = algorithms[i];
113 // Test self-consistency of checksum algorithms.
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
DefaultSignatureAlgorithmIdentifierFinder.java 27 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);
53 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
54 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
56 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 59 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.get(algorithm)).intValue()
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/
PKCS10CertificationRequest.java 80 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"));
99 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
100 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
X509Util.java 45 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);
60 // algorithms.put("SHA224WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha224WithRSAEncryption);
61 // algorithms.put("SHA224WITHRSA", PKCSObjectIdentifiers.sha224WithRSAEncryption);
63 algorithms.put("SHA256WITHRSAENCRYPTION", PKCSObjectIdentifiers.sha256WithRSAEncryption)
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 48 // build set of expected algorithms
81 Set<String> algorithms = remaining.get(type); local
82 if (algorithms == null || !algorithms.remove(algorithm)) {
93 if (algorithms != null && algorithms.isEmpty()) {
113 assertEquals("Extra algorithms", Collections.EMPTY_LIST, extra);
116 assertEquals("Missing algorithms", Collections.EMPTY_MAP, remaining);
127 * implementation that exists or are aliases to known algorithms.
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactoryTest.java 137 String[] algorithms = { local
158 for (int i = 0; i < algorithms.length; i++) {
159 String algorithm = algorithms[i];
SignatureTest.java 56 String [] algorithms = { "SHA256WITHRSA", "NONEWITHDSA", "SHA384WITHRSA", local
59 for (int i = 0; i < algorithms.length; i ++) {
60 MySignature1 s = new MySignature1(algorithms[i]);
61 assertEquals(algorithms[i],s.getAlgorithm());
  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java 85 * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...)
97 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
98 if (algorithms == null) {
99 algorithms = new HashSet();
100 PROVIDER_ALGORITHMS.put(type, algorithms);
103 algorithms.add(algorithm.toUpperCase(Locale.ROOT)));
106 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
107 assertNotNull(algorithms);
108 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase(Locale.ROOT)));
109 if (algorithms.isEmpty())
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/
ssl3ext.c 2180 SECItem algorithms; local
    [all...]
ssl3con.c 6679 SECItem algorithms = {siBuffer, NULL, 0}; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /prebuilts/devtools/tools/lib/
bcprov-jdk15on-1.48.jar 
bcpkix-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcpkix-jdk15on/1.48/
bcpkix-jdk15on-1.48.jar 

Completed in 894 milliseconds