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

1 2 3 45 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/transforms/
MatrixTransformOperation.cpp 25 #include <algorithm>
PerspectiveTransformOperation.cpp 29 #include <algorithm>
  /external/webkit/WebKit/mac/
WebKitPrefix.h 51 #include <algorithm> // needed for exception_defines.h
  /libcore/luni/src/main/java/javax/crypto/
KeyAgreementSpi.java 89 * @param algorithm
90 * the algorithm to for the {@code SecretKey}
92 * algorithm.
96 * if the specified algorithm for the secret key does not
99 * if a {@code SecretKey} with the specified algorithm cannot be
102 protected abstract SecretKey engineGenerateSecret(String algorithm)
123 * algorithm parameters and randomness source.
128 * the parameters for this key agreement algorithm.
136 * agreement algorithm.
  /ndk/sources/android/stlport/test/unit/
bcompos_test.cpp 1 #include <algorithm>
fill_test.cpp 2 #include <algorithm>
finsert_test.cpp 2 #include <algorithm>
logic_test.cpp 2 #include <algorithm>
max_test.cpp 2 #include <algorithm>
min_test.cpp 2 #include <algorithm>
pair_test.cpp 3 #include <algorithm>
queue_test.cpp 2 #include <algorithm>
rawriter_test.cpp 1 #include <algorithm>
stack_test.cpp 1 #include <algorithm>
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
BouncyCastleProvider.java 40 * <p>Note: JCE algorithm names should be upper-case only so the case insensitive
159 // algorithm parameter generators
179 // algorithm parameters
    [all...]
  /system/core/libcutils/
dir_hash.c 36 * specified by path, using the specified algorithm. Returns the length
39 int get_file_hash(HashAlgorithm algorithm, const char *path,
47 if (algorithm != SHA_1) {
129 static int recurse(HashAlgorithm algorithm, const char *directory_path,
200 int len = get_file_hash(algorithm, name,
236 if (recurse(algorithm, name, out) < 0) {
260 * reached under the specified directory_path, using the specified algorithm.
264 int get_recursive_hash_manifest(HashAlgorithm algorithm,
276 if (recurse(algorithm, directory_path, &out) < 0) {
  /libcore/luni/src/test/java/libcore/java/security/
ProviderTest.java 65 String algorithm = service.getAlgorithm().toUpperCase(); local
70 + " " + algorithm
76 if (algorithms == null || !algorithms.remove(algorithm)) {
78 // algorithm is available from multiple providers
83 && StandardNames.PROVIDER_ALGORITHMS.get(type).contains(algorithm))) {
84 extra.add("Unknown " + type + " " + algorithm + "\n");
  /external/nist-sip/java/gov/nist/core/net/
SslNetworkLayer.java 72 String algorithm = KeyManagerFactory.getDefaultAlgorithm(); local
73 TrustManagerFactory tmFactory = TrustManagerFactory.getInstance(algorithm);
74 KeyManagerFactory kmFactory = KeyManagerFactory.getInstance(algorithm);
  /external/openssl/crypto/asn1/
p5_pbev2.c 83 /* Return an algorithm identifier for a PKCS#5 v2.0 PBE algorithm:
115 scheme->algorithm = obj;
185 pbe2->keyfunc->algorithm = OBJ_nid2obj(NID_id_pbkdf2);
203 ret->algorithm = OBJ_nid2obj(NID_pbes2);
a_verify.c 86 i=OBJ_obj2nid(a->algorithm);
142 if (!OBJ_find_sigid_algs(OBJ_obj2nid(a->algorithm), &mdnid, &pknid))
  /libcore/luni/src/main/java/java/util/jar/
JarVerifier.java 206 String algorithm = tokens.nextToken(); local
207 String hash = attributes.getValue(algorithm + "-Digest");
215 .getInstance(algorithm), hashBytes, certificatesArray);
394 String algorithm = tokens.nextToken(); local
395 String hash = attributes.getValue(algorithm + entry);
402 md = MessageDigest.getInstance(algorithm);
  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java 45 * Java &trade; Cryptography Architecture Standard Algorithm Name Documentation
58 * A map from algorithm type (e.g. Cipher) to a set of algorithms (e.g. AES, DES, ...)
62 private static void provide(String type, String algorithm) {
68 assertTrue("Duplicate " + type + " " + algorithm,
69 algorithms.add(algorithm.toUpperCase()));
71 private static void unprovide(String type, String algorithm) {
74 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase()));
  /external/openssl/crypto/pkcs7/
pk7_attr.c 105 ASN1_OBJECT_free(alg->algorithm);
106 alg->algorithm = OBJ_nid2obj (nid);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
KeyAgreementSpiTest.java 65 protected SecretKey engineGenerateSecret(String algorithm) throws IllegalStateException,
67 return super.engineGenerateSecret(algorithm);
  /libcore/luni/src/test/java/tests/targets/security/
SignatureTestMD2withRSA.java 39 @AndroidOnly("Android doesn't include MD2withRSA signature algorithm")
143 public MD2withRSA(String algorithm) {
144 super(algorithm);

Completed in 242 milliseconds

1 2 3 45 6 7 8 91011>>