HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 676 - 700 of 3084) sorted by null

<<21222324252627282930>>

  /ndk/tests/device/test-stlport/unit/
generator_test.cpp 2 #include <algorithm>
innerprod_test.cpp 2 #include <algorithm>
inplace_test.cpp 2 #include <algorithm>
insert_test.cpp 3 #include <algorithm>
nthelm_test.cpp 2 #include <algorithm>
ptr2_test.cpp 2 #include <algorithm>
reviter_test.cpp 3 #include <algorithm>
setinter_test.cpp 5 #include <algorithm>
setunion_test.cpp 5 #include <algorithm>
transform_test.cpp 4 #include <algorithm>
unary_test.cpp 3 #include <algorithm>
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
SSLSocketFactory.java 178 String algorithm,
187 if (algorithm == null) {
188 algorithm = TLS;
198 sslcontext = SSLContext.getInstance(algorithm);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/crypto/
SHA1withDSA_SignatureTest.java 55 private static final String algorithm = "SHA1withDSA"; field in class:SHA1withDSA_SignatureTest
154 signs = new Signature[] { Signature.getInstance(algorithm, provider),
155 Signature.getInstance(algorithm, provider),
156 Signature.getInstance(algorithm, provider),
157 Signature.getInstance(algorithm, provider),
158 Signature.getInstance(algorithm, provider) };
709 signingSign = Signature.getInstance(algorithm, provider);
710 verifyingSign = Signature.getInstance(algorithm, provider1);
724 signingSign = Signature.getInstance(algorithm, provider1);
725 verifyingSign = Signature.getInstance(algorithm, provider)
    [all...]
  /external/chromium_org/chrome/browser/thumbnails/
simple_thumbnail_crop_unittest.cc 150 scoped_refptr<thumbnails::ThumbnailingAlgorithm> algorithm(
155 thumbnails::ClipResult clip_result = algorithm->GetCanvasCopyInfo(
167 clip_result = algorithm->GetCanvasCopyInfo(
179 clip_result = algorithm->GetCanvasCopyInfo(
191 clip_result = algorithm->GetCanvasCopyInfo(
  /frameworks/base/core/java/android/net/http/
RequestHandle.java 242 String algorithm,
246 username, password, realm, nonce, QOP, algorithm, opaque);
301 String algorithm,
327 if (algorithm != null) {
328 response += ", algorithm=" + algorithm;
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 91 // algorithm come from the default providers
428 throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
535 throw new IllegalArgumentException("Unknown key algorithm " + keyAlgorithm);
590 * The RI can't handle the BC EC signature algorithm
604 * Return the key algorithm for a possible compound algorithm
607 * algorithm such as EC_RSA, return EC.
609 public static String keyAlgorithm(String algorithm) {
610 int index = algorithm.indexOf('_');
612 return algorithm;
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_ameth.c 289 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) == NID_mgf1
315 if (BIO_puts(bp, "Hash Algorithm: ") <= 0)
320 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
332 if (BIO_puts(bp, "Mask Algorithm: ") <= 0)
336 if (i2a_ASN1_OBJECT(bp, pss->maskGenAlgorithm->algorithm) <= 0)
342 if (i2a_ASN1_OBJECT(bp, maskHash->algorithm) <= 0)
389 if (OBJ_obj2nid(sigalg->algorithm) == NID_rsassaPss)
471 if (OBJ_obj2nid(sigalg->algorithm) != NID_rsassaPss)
484 /* Check mask and lookup mask hash algorithm */
487 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) != NID_mgf1
    [all...]
  /external/openssl/crypto/rsa/
rsa_ameth.c 289 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) == NID_mgf1
315 if (BIO_puts(bp, "Hash Algorithm: ") <= 0)
320 if (i2a_ASN1_OBJECT(bp, pss->hashAlgorithm->algorithm) <= 0)
332 if (BIO_puts(bp, "Mask Algorithm: ") <= 0)
336 if (i2a_ASN1_OBJECT(bp, pss->maskGenAlgorithm->algorithm) <= 0)
342 if (i2a_ASN1_OBJECT(bp, maskHash->algorithm) <= 0)
389 if (OBJ_obj2nid(sigalg->algorithm) == NID_rsassaPss)
471 if (OBJ_obj2nid(sigalg->algorithm) != NID_rsassaPss)
484 /* Check mask and lookup mask hash algorithm */
487 if (OBJ_obj2nid(pss->maskGenAlgorithm->algorithm) != NID_mgf1
    [all...]
  /external/chromium/crypto/
symmetric_key_win.cc 45 // key created for the specified |provider|. |alg| contains the algorithm of
315 SymmetricKey* SymmetricKey::GenerateRandomKey(Algorithm algorithm,
325 switch (algorithm) {
355 SymmetricKey* SymmetricKey::DeriveKeyFromPassword(Algorithm algorithm,
368 switch (algorithm) {
450 // Convert the derived key bytes into a key handle for the desired algorithm.
464 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
    [all...]
  /external/chromium_org/crypto/
symmetric_key_win.cc 44 // key created for the specified |provider|. |alg| contains the algorithm of
315 SymmetricKey* SymmetricKey::GenerateRandomKey(Algorithm algorithm,
325 switch (algorithm) {
355 SymmetricKey* SymmetricKey::DeriveKeyFromPassword(Algorithm algorithm,
368 switch (algorithm) {
450 // Convert the derived key bytes into a key handle for the desired algorithm.
464 SymmetricKey* SymmetricKey::Import(Algorithm algorithm,
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
p5_pbev2.c 83 /* Return an algorithm identifier for a PKCS#5 v2.0 PBE algorithm:
113 scheme->algorithm = obj;
168 ret->algorithm = OBJ_nid2obj(NID_pbes2);
259 keyfunc->algorithm = OBJ_nid2obj(NID_id_pbkdf2);
  /external/openssl/crypto/asn1/
p5_pbev2.c 83 /* Return an algorithm identifier for a PKCS#5 v2.0 PBE algorithm:
113 scheme->algorithm = obj;
168 ret->algorithm = OBJ_nid2obj(NID_pbes2);
259 keyfunc->algorithm = OBJ_nid2obj(NID_id_pbkdf2);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyFactory2Test.java 98 "algorithm name");
99 assertEquals("algorithm name", kf.getAlgorithm());
125 assertEquals("generatePrivate generated different key for algorithm " + keyfactAlgs[i],
129 assertEquals("generatePrivate generated different key for algorithm " + keyfactAlgs[i],
155 "generatePublic generated different key for algorithm "
169 assertTrue("getAlgorithm ok for algorithm " + keyfactAlgs[i],
250 "generatePrivate generated different key for algorithm "
256 "generatePublic generated different key for algorithm "
279 assertNotNull("provider is null for algorithm " + keyfactAlgs[i], p);
330 String algorithm = (String) e.nextElement() local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/pkcs7/
pk7_doit.c 115 md=EVP_get_digestbyobj(alg->algorithm);
287 xalg=p7->d.signed_and_enveloped->enc_data->algorithm;
298 xalg=p7->d.enveloped->enc_data->algorithm;
340 xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
449 enc_alg=p7->d.signed_and_enveloped->enc_data->algorithm;
450 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
459 enc_alg=p7->d.enveloped->enc_data->algorithm;
461 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
485 j=OBJ_obj2nid(xa->algorithm);
821 j = OBJ_obj2nid(si->digest_alg->algorithm);
    [all...]
  /external/openssl/crypto/pkcs7/
pk7_doit.c 115 md=EVP_get_digestbyobj(alg->algorithm);
287 xalg=p7->d.signed_and_enveloped->enc_data->algorithm;
298 xalg=p7->d.enveloped->enc_data->algorithm;
340 xalg->algorithm = OBJ_nid2obj(EVP_CIPHER_type(evp_cipher));
449 enc_alg=p7->d.signed_and_enveloped->enc_data->algorithm;
450 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
459 enc_alg=p7->d.enveloped->enc_data->algorithm;
461 evp_cipher=EVP_get_cipherbyobj(enc_alg->algorithm);
485 j=OBJ_obj2nid(xa->algorithm);
821 j = OBJ_obj2nid(si->digest_alg->algorithm);
    [all...]

Completed in 1408 milliseconds

<<21222324252627282930>>