HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 251 - 275 of 492) sorted by null

<<11121314151617181920

  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyStore.java 411 String algorithm = dIn.readUTF(); local
427 return new SecretKeySpec(enc, algorithm);
439 return KeyFactory.getInstance(algorithm, "BC").generatePrivate(spec);
441 return KeyFactory.getInstance(algorithm, "BC").generatePublic(spec);
443 return SecretKeyFactory.getInstance(algorithm, "BC").generateSecret(spec);
456 String algorithm,
466 SecretKeyFactory keyFact = SecretKeyFactory.getInstance(algorithm, "BC");
469 Cipher cipher = Cipher.getInstance(algorithm, "BC");
JDKPKCS12KeyStore.java 565 String algorithm = algId.getObjectId().getId(); local
574 algorithm, bcProvider);
583 Cipher cipher = Cipher.getInstance(algorithm, bcProvider);
587 // we pass "" as the key algorithm type as it is unknown at this point
599 String algorithm,
611 algorithm, bcProvider);
616 Cipher cipher = Cipher.getInstance(algorithm, bcProvider);
638 String algorithm = algId.getObjectId().getId(); local
644 SecretKeyFactory keyFact = SecretKeyFactory.getInstance(algorithm, bcProvider);
652 Cipher cipher = Cipher.getInstance(algorithm, bcProvider)
    [all...]
  /external/chromium/net/http/
http_auth_handler_digest.cc 23 // qop |algorithm | response |
31 // qop |algorithm | A1 |
37 // qop |algorithm | A2 |
69 std::string HttpAuthHandlerDigest::AlgorithmToString(int algorithm) {
70 switch (algorithm) {
167 authorization += ", algorithm=" + AlgorithmToString(algorithm_);
195 // [algorithm="<digest-algorithm>"]
259 } else if (LowerCaseEqualsASCII(name, "algorithm")) {
260 // Parse the algorithm
    [all...]
http_auth.cc 7 #include <algorithm>
http_vary_data_unittest.cc 5 #include <algorithm>
  /external/openssl/crypto/asn1/
x_pubkey.c 153 if (!EVP_PKEY_set_type(ret, OBJ_obj2nid(key->algor->algorithm)))
364 *ppkalg = pub->algor->algorithm;
t_x509.c 170 if (BIO_printf(bp,"%8sSignature Algorithm: ","") <= 0)
172 if (i2a_ASN1_OBJECT(bp, ci->signature->algorithm) <= 0)
203 if (BIO_printf(bp,"%12sPublic Key Algorithm: ","") <= 0)
205 if (i2a_ASN1_OBJECT(bp, ci->key->algor->algorithm) <= 0)
290 if (BIO_puts(bp," Signature Algorithm: ") <= 0) return 0;
291 if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0) return 0;
  /external/webkit/WebCore/page/
Settings.h 90 void setLayoutAlgorithm(LayoutAlgorithm algorithm) { m_layoutAlgorithm = algorithm; }
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyRepTest.java 170 fail("NotSerializableException has not been thrown (unknown KeyFactory algorithm)");
204 fail("NotSerializableException has not been thrown (unknown KeyFactory algorithm)");
261 public KeyRepChild(KeyRep.Type type, String algorithm, String format,
263 super(type, algorithm, format, encoded);
ProviderServiceTest.java 57 new Provider.Service(null, "type", "algorithm", "className", null,
63 new Provider.Service(p, null, "algorithm", "className", null, null);
69 fail("algorithm is null: No expected NullPointerException");
73 new Provider.Service(p, "type", "algorithm", null, null, null);
78 Provider.Service s = new Provider.Service(p, "type", "algorithm",
84 if (!s.getAlgorithm().equals("algorithm")) {
106 Provider.Service s = new Provider.Service(p, "type", "algorithm",
123 s = new Provider.Service(p, "type", "algorithm", "className", null, hm);
144 "algorithm",
167 Provider.Service s1 = new Provider.Service(p, "type", "algorithm",
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherTest.java 69 static final String algorithm = "DESede"; field in class:CipherTest
78 KeyGenerator kg = KeyGenerator.getInstance(algorithm);
287 final String algorithm = "DESede/CBC/PKCS5Padding"; local
289 Cipher cipher = Cipher.getInstance(algorithm);
290 assertTrue("Cipher algorithm does not match", cipher.getAlgorithm()
291 .equals(algorithm));
313 final String algorithm = "DESede/CBC/PKCS5Padding"; local
315 Cipher cipher = Cipher.getInstance(algorithm);
340 Cipher cipher = Cipher.getInstance(algorithm + "/ECB/PKCS5Padding");
370 Cipher cipher = Cipher.getInstance(algorithm + "/ECB/PKCS5Padding")
    [all...]
  /external/astl/tests/
test_uninitialized.cpp 36 #include <algorithm>
  /external/chromium/base/
observer_list_threadsafe.h 9 #include <algorithm>
  /external/chromium/net/base/
directory_lister.cc 7 #include <algorithm>
network_change_notifier_mac.cc 29 #include <algorithm>
x509_certificate_win.cc 268 // signature algorithm of the root CA certificate because the signature on
272 const char* algorithm = cert->pCertInfo->SignatureAlgorithm.pszObjId; local
273 if (strcmp(algorithm, szOID_RSA_MD5RSA) == 0) {
278 } else if (strcmp(algorithm, szOID_RSA_MD2RSA) == 0) {
283 } else if (strcmp(algorithm, szOID_RSA_MD4RSA) == 0) {
  /external/chromium/net/proxy/
proxy_server.cc 7 #include <algorithm>
  /external/openssl/crypto/dsa/
dsa_ameth.c 555 if (alg1 == NULL || alg1->algorithm == NULL)
557 hnid = OBJ_obj2nid(alg1->algorithm);
572 if (alg1 == NULL || alg1->algorithm == NULL)
574 hnid = OBJ_obj2nid(alg1->algorithm);
  /external/openssl/crypto/pkcs7/
pk7_lib.c 259 nid=OBJ_obj2nid(psi->digest_alg->algorithm);
266 if (OBJ_obj2nid(alg->algorithm) == nid)
272 if (!j) /* we need to add another algorithm */
281 alg->algorithm=OBJ_nid2obj(nid);
452 p7->d.digest->md->algorithm = OBJ_nid2obj(EVP_MD_nid(md));
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
concat.h 22 #include <algorithm>
  /external/stlport/test/unit/
adj_test.cpp 3 #include <algorithm>
iter_test.cpp 3 #include <algorithm>
mfunptr_test.cpp 4 #include <algorithm>
sort_test.cpp 2 #include <algorithm>
158 * that can result in a bad sort algorithm behavior. The type
swap_test.cpp 2 #include <algorithm>

Completed in 668 milliseconds

<<11121314151617181920