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

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/libcxx/experimental/algorithms/header.algorithm.synop/
includes.pass.cpp 10 // <experimental/algorithm>
12 #include <experimental/algorithm>
15 # error "<experimental/algorithm> must include <algorithm>"
  /libcore/ojluni/src/main/java/sun/security/jca/
ServiceId.java 29 * Simple class encapsulating a service type and algorithm for lookup.
38 public final String algorithm; field in class:ServiceId
40 public ServiceId(String type, String algorithm) {
42 this.algorithm = algorithm;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/algorithms/header.algorithm.synop/
includes.pass.cpp 10 // <experimental/algorithm>
12 #include <experimental/algorithm>
15 # error "<experimental/algorithm> must include <algorithm>"
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/util/
DefaultJcaJceHelper.java 29 String algorithm)
32 return Cipher.getInstance(algorithm);
35 public Mac createMac(String algorithm)
38 return Mac.getInstance(algorithm);
41 public KeyAgreement createKeyAgreement(String algorithm)
44 return KeyAgreement.getInstance(algorithm);
47 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm)
50 return AlgorithmParameterGenerator.getInstance(algorithm);
53 public AlgorithmParameters createAlgorithmParameters(String algorithm)
56 return AlgorithmParameters.getInstance(algorithm);
    [all...]
NamedJcaJceHelper.java 36 String algorithm)
39 return Cipher.getInstance(algorithm, providerName);
42 public Mac createMac(String algorithm)
45 return Mac.getInstance(algorithm, providerName);
48 public KeyAgreement createKeyAgreement(String algorithm)
51 return KeyAgreement.getInstance(algorithm, providerName);
54 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm)
57 return AlgorithmParameterGenerator.getInstance(algorithm, providerName);
60 public AlgorithmParameters createAlgorithmParameters(String algorithm)
63 return AlgorithmParameters.getInstance(algorithm, providerName)
    [all...]
ProviderJcaJceHelper.java 36 String algorithm)
39 return Cipher.getInstance(algorithm, provider);
42 public Mac createMac(String algorithm)
45 return Mac.getInstance(algorithm, provider);
48 public KeyAgreement createKeyAgreement(String algorithm)
51 return KeyAgreement.getInstance(algorithm, provider);
54 public AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm)
57 return AlgorithmParameterGenerator.getInstance(algorithm, provider);
60 public AlgorithmParameters createAlgorithmParameters(String algorithm)
63 return AlgorithmParameters.getInstance(algorithm, provider)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 33 private String algorithm; field in class:PrivateKeyImpl
37 public PrivateKeyImpl(String algorithm) {
38 this.algorithm = algorithm;
42 return algorithm;
57 public void setAlgorithm(String algorithm) {
58 this.algorithm = algorithm;
PublicKeyImpl.java 37 private String algorithm; field in class:PublicKeyImpl
40 public PublicKeyImpl(String algorithm) {
41 this.algorithm = algorithm;
46 return algorithm;
62 public void setAlgorithm(String algorithm) {
63 this.algorithm = algorithm;
  /external/libcxx/test/libcxx/algorithms/
version.pass.cpp 10 // <algorithm>
12 #include <algorithm>
  /external/libcxx/test/libcxx/experimental/algorithms/
version.pass.cpp 10 // <experimental/algorithm>
12 #include <experimental/algorithm>
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/
version.pass.cpp 10 // <algorithm>
12 #include <algorithm>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/algorithms/
version.pass.cpp 10 // <experimental/algorithm>
12 #include <experimental/algorithm>
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/algorithms/
version.pass.cpp 10 // <algorithm>
12 #include <algorithm>
  /external/webrtc/webrtc/base/
openssldigest.cc 20 OpenSSLDigest::OpenSSLDigest(const std::string& algorithm) {
22 if (GetDigestEVP(algorithm, &md_)) {
58 bool OpenSSLDigest::GetDigestEVP(const std::string& algorithm,
61 if (algorithm == DIGEST_MD5) {
63 } else if (algorithm == DIGEST_SHA_1) {
65 } else if (algorithm == DIGEST_SHA_224) {
67 } else if (algorithm == DIGEST_SHA_256) {
69 } else if (algorithm == DIGEST_SHA_384) {
71 } else if (algorithm == DIGEST_SHA_512) {
84 std::string* algorithm) {
    [all...]
sslfingerprint.cc 23 const std::string& algorithm, const rtc::SSLIdentity* identity) {
28 return Create(algorithm, &(identity->certificate()));
32 const std::string& algorithm, const rtc::SSLCertificate* cert) {
36 algorithm, digest_val, sizeof(digest_val), &digest_len);
41 return new SSLFingerprint(algorithm, digest_val, digest_len);
45 const std::string& algorithm, const std::string& fingerprint) {
46 if (algorithm.empty() || !rtc::IsFips180DigestAlgorithm(algorithm))
61 return new SSLFingerprint(algorithm, reinterpret_cast<uint8_t*>(value),
65 SSLFingerprint::SSLFingerprint(const std::string& algorithm,
    [all...]
sslfingerprint.h 25 static SSLFingerprint* Create(const std::string& algorithm,
28 static SSLFingerprint* Create(const std::string& algorithm,
31 static SSLFingerprint* CreateFromRfc4572(const std::string& algorithm,
34 SSLFingerprint(const std::string& algorithm,
46 std::string algorithm; member in struct:rtc::SSLFingerprint
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
PrivateKeyStub.java 35 String algorithm = null; field in class:PrivateKeyStub
43 * @param algorithm
47 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
48 this.algorithm = algorithm;
54 * Returns algorithm
58 return algorithm;
PublicKeyStub.java 38 String algorithm = null; field in class:PublicKeyStub
45 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
46 this.algorithm = algorithm;
52 * returns algorithm
55 return algorithm;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
DigestAlgorithmProvider.java 12 String algorithm,
16 String mainName = "HMAC" + algorithm;
19 provider.addAlgorithm("Alg.Alias.Mac.HMAC-" + algorithm, mainName);
20 provider.addAlgorithm("Alg.Alias.Mac.HMAC/" + algorithm, mainName);
22 provider.addAlgorithm("Alg.Alias.KeyGenerator.HMAC-" + algorithm, mainName);
23 provider.addAlgorithm("Alg.Alias.KeyGenerator.HMAC/" + algorithm, mainName);
28 String algorithm,
31 String mainName = "HMAC" + algorithm;
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStorePrivateKey.java 28 public AndroidKeyStorePrivateKey(String alias, int uid, String algorithm) {
29 super(alias, uid, algorithm);
AndroidKeyStoreSecretKey.java 28 public AndroidKeyStoreSecretKey(String alias, int uid, String algorithm) {
29 super(alias, uid, algorithm);
  /external/conscrypt/common/src/main/java/org/conscrypt/
X509PublicKey.java 24 * the appropriate KeyFactory for the key algorithm is not available.
29 private final String algorithm; field in class:X509PublicKey
33 X509PublicKey(String algorithm, byte[] encoded) {
34 this.algorithm = algorithm;
40 return algorithm;
55 return "X509PublicKey [algorithm=" + algorithm + ", encoded=" + Arrays.toString(encoded)
63 result = prime * result + ((algorithm == null) ? 0 : algorithm.hashCode())
    [all...]
  /external/vboot_reference/host/lib/include/
signature_digest.h 11 /* Returns a buffer with DigestInfo (which depends on [algorithm])
14 uint8_t* PrependDigestInfo(unsigned int algorithm, uint8_t* digest);
22 * choice of the hash algorithm (see padding.c). Caller owns the returned
26 unsigned int algorithm);
29 * the private RSA key file from [key_file] and signature algorithm
30 * [algorithm].
35 unsigned int algorithm);
  /libcore/ojluni/src/main/java/java/security/
AlgorithmParameterGenerator.java 33 * parameters to be used with a certain algorithm. Parameter generators
38 * in two different ways: in an algorithm-independent manner, or in an
39 * algorithm-specific manner:
42 * <li>The algorithm-independent approach uses the fact that all parameter
45 * by all algorithm parameters, though it is interpreted differently
47 * the <i>DSA</i> algorithm, "size" corresponds to the size
49 * When using this approach, algorithm-specific parameter generation
54 * using algorithm-specific semantics, which are represented by a set of
55 * algorithm-specific parameter generation values. To generate
73 * <th>Algorithm</th
124 private String algorithm; field in class:AlgorithmParameterGenerator
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/spec/
SecretKeySpec.java 62 * The name of the algorithm associated with this key.
66 private String algorithm; field in class:SecretKeySpec
72 * secret key of the specified algorithm. For example, if the algorithm is
75 * In order for those checks to be performed, an algorithm-specific
82 * @param algorithm the name of the secret-key algorithm to be associated
87 * for information about standard algorithm names.
88 * @exception IllegalArgumentException if <code>algorithm</code>
91 public SecretKeySpec(byte[] key, String algorithm) {
    [all...]

Completed in 717 milliseconds

1 2 3 4 5 6 7 8 91011>>