HomeSort by relevance Sort by last modified time
    Searched refs:algorithms (Results 1 - 25 of 28) sorted by null

1 2

  /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/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...]
  /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/jcajce/provider/asymmetric/dh/
KeyAgreementSpi.java 34 private static final Hashtable algorithms = new Hashtable(); field in class:KeyAgreementSpi
45 algorithms.put("DES", i64);
46 algorithms.put("DESEDE", i192);
47 algorithms.put("BLOWFISH", i128);
48 algorithms.put("AES", i256);
145 if (algorithms.containsKey(algKey))
147 Integer length = (Integer)algorithms.get(algKey);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
KeyAgreementSpi.java 57 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...]
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 193 String algorithms = attributes.getValue("Digest-Algorithms"); local
194 if (algorithms == null) {
195 algorithms = "SHA SHA1";
197 StringTokenizer tokens = new StringTokenizer(algorithms);
381 String algorithms = attributes.getValue("Digest-Algorithms"); local
382 if (algorithms == null) {
383 algorithms = "SHA SHA1";
385 StringTokenizer tokens = new StringTokenizer(algorithms);
    [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/support/src/test/java/libcore/java/security/
StandardNames.java 84 * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...)
96 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
97 if (algorithms == null) {
98 algorithms = new HashSet();
99 PROVIDER_ALGORITHMS.put(type, algorithms);
102 algorithms.add(algorithm.toUpperCase()));
105 Set<String> algorithms = PROVIDER_ALGORITHMS.get(type); local
106 assertNotNull(algorithms);
107 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase()));
108 if (algorithms.isEmpty())
    [all...]
  /external/openssl/crypto/asn1/
x_algor.c 70 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, algorithms, X509_ALGOR)
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest2Test.java 66 for (List<String> algorithms : digestAlgs.values()) {
67 for (String algorithm : algorithms) {
337 for (List<String> algorithms : digestAlgs.values()) {
338 for (String algorithm : algorithms) {
436 * Returns the digest algorithms that the given provider supports.
440 fail("No digest algorithms were found");
452 fail("No digest algorithms were found");
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());
KeyFactoryTest.java 137 String[] algorithms = { local
158 for (int i = 0; i < algorithms.length; i++) {
159 String algorithm = algorithms[i];
  /external/v8/test/mjsunit/
string-indexof-1.js 80 // Test complex string indexOf algorithms. Only trigger for long strings.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform05.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms#normalizeDocumentAlgo
documentnormalizedocument05.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms#normalizeDocumentAlgo
documentnormalizedocument13.js 86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/namespaces-algorithms#normalizeDocumentAlgo
  /external/dropbear/libtommath/
bn.tex 88 algorithms used in the library.
255 Source code alone cannot really teach how the algorithms work which is why I also wrote a textbook that accompanies
271 \hline Five modular reduction algorithms & X & & Faster modular exponentiation for a variety of moduli. \\
441 Certain algorithms require more than one large integer. In these instances it is ideal to initialize all of the mp\_int
    [all...]
  /external/openssh/contrib/suse/
openssh.spec 61 patented algorithms to seperate libraries (OpenSSL).
75 patented algorithms to seperate libraries (OpenSSL).
  /external/ipsec-tools/src/racoon/
cfparse.y 1409 algorithms EOS
1422 algorithms
1431 COMMA algorithms
    [all...]
  /external/dropbear/libtomcrypt/
crypt.tex 178 This flexibility within the library means it can be used with any combination of primitive algorithms and
363 Certain PRNG algorithms do not require a \textit{prng\_state} argument (sprng for example). The \textit{prng\_state} argument
647 The \textit{encrypt only} descriptors are useful for applications that only use the encryption function of the cipher. Algorithms such
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /external/libvorbis/doc/
01-introduction.tex 235 algorithms numbered 0 through 2. The packing algorithm details are
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/iproute2/doc/
ip-cref.tex     [all...]
  /tools/motodev/src/plugins/certmanager/lib/
bcprov-jdk15on-147.jar 

Completed in 5223 milliseconds

1 2