| /external/chromium_org/content/renderer/ |
| webcrypto_impl.h | 17 const WebKit::WebCryptoAlgorithm& algorithm) OVERRIDE;
|
| webcrypto_impl.cc | 12 const WebKit::WebCryptoAlgorithm& algorithm) { 13 switch (algorithm.id()) { 22 // Not a digest algorithm.
|
| /external/chromium_org/net/base/ |
| upload_element.cc | 7 #include <algorithm>
|
| /libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
| AlgorithmIdentifier.java | 37 * with the Algorithm Identifier which is a part of X.509 certificate 45 * algorithm OBJECT IDENTIFIER, 46 * parameters ANY DEFINED BY algorithm OPTIONAL 51 /** the value of algorithm field */ 52 private String algorithm; field in class:AlgorithmIdentifier 53 /** the name of the algorithm */ 60 public AlgorithmIdentifier(String algorithm) { 61 this(algorithm, null, null); 64 public AlgorithmIdentifier(String algorithm, byte[] parameters) { 65 this(algorithm, parameters, null) [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.swap/ |
| iter_swap.pass.cpp | 10 // <algorithm> 17 #include <algorithm>
|
| /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/ |
| yes_no_type.hpp | 15 namespace algorithm { namespace in namespace:boost 29 } // namespace algorithm
|
| /libcore/luni/src/main/java/java/security/ |
| MessageDigest.java | 59 // The algorithm. 60 private String algorithm; field in class:MessageDigest 64 * the algorithm to use. 66 * @param algorithm 67 * the name of algorithm to use 69 protected MessageDigest(String algorithm) { 70 this.algorithm = algorithm; 75 * specified algorithm. 77 * @param algorithm [all...] |
| AlgorithmParameters.java | 27 * {@code AlgorithmParameters} is an engine class which provides algorithm 52 * The security algorithm. 54 private final String algorithm; field in class:AlgorithmParameters 69 * @param algorithm 70 * the name of the algorithm. 73 Provider provider, String algorithm) { 75 this.algorithm = algorithm; 81 * algorithm. 83 * @param algorithm [all...] |
| SecureRandom.java | 39 * <p>The default algorithm is defined by the first {@code SecureRandomSpi} 53 * algorithm must be secure. 79 private final String algorithm; field in class:SecureRandom 85 * Constructs a new {@code SecureRandom} that uses the default algorithm. 93 this.algorithm = "SHA1PRNG"; 98 this.algorithm = service.getAlgorithm(); 107 * algorithm. <a href="#insecure_seed">Seeding {@code SecureRandom} may be 132 String algorithm) { 135 this.algorithm = algorithm; [all...] |
| Signature.java | 47 // The algorithm. 48 private String algorithm; field in class:Signature 77 * the algorithm to use. 79 * @param algorithm 80 * the name of algorithm to use. 82 protected Signature(String algorithm) { 83 this.algorithm = algorithm; 88 * algorithm. 90 * @param algorithm [all...] |
| /libcore/luni/src/main/java/javax/crypto/ |
| KeyGenerator.java | 48 // Store used algorithm name 49 private final String algorithm; field in class:KeyGenerator 58 * @param algorithm 59 * the name of the algorithm. 62 String algorithm) { 64 this.algorithm = algorithm; 69 * Returns the name of the key generation algorithm. 71 * @return the name of the key generation algorithm. 74 return algorithm; [all...] |
| Mac.java | 47 // Store used algorithm name 48 private final String algorithm; field in class:Mac 60 * @param algorithm 61 * the name of the MAC algorithm. 63 protected Mac(MacSpi macSpi, Provider provider, String algorithm) { 65 this.algorithm = algorithm; 71 * Returns the name of the MAC algorithm. 73 * @return the name of the MAC algorithm. 76 return algorithm; [all...] |
| /external/chromium_org/third_party/WebKit/Source/core/platform/chromium/support/ |
| WebCryptoKey.cpp | 42 WebCryptoKeyPrivate(PassOwnPtr<WebCryptoKeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages) 46 , algorithm(algorithm) 54 const WebCryptoAlgorithm algorithm; member in class:WebKit::WebCryptoKeyPrivate 58 WebCryptoKey WebCryptoKey::create(WebCryptoKeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoAlgorithm& algorithm, WebCryptoKeyUsageMask usages) 61 key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages)); 80 const WebCryptoAlgorithm& WebCryptoKey::algorithm() const function in class:WebKit::WebCryptoKey 82 return m_private->algorithm;
|
| /external/chromium_org/third_party/WebKit/Source/modules/crypto/ |
| AesCbcParams.h | 34 #include "modules/crypto/Algorithm.h" 39 class AesCbcParams : public Algorithm { 41 static PassRefPtr<AesCbcParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
|
| HmacParams.h | 34 #include "modules/crypto/Algorithm.h" 39 class HmacParams : public Algorithm { 41 static PassRefPtr<HmacParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); } 43 Algorithm* hash(); 48 RefPtr<Algorithm> m_hash;
|
| RsaKeyGenParams.h | 34 #include "modules/crypto/Algorithm.h" 40 class RsaKeyGenParams : public Algorithm { 42 static PassRefPtr<RsaKeyGenParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
|
| RsaSsaParams.h | 34 #include "modules/crypto/Algorithm.h" 39 class RsaSsaParams : public Algorithm { 41 static PassRefPtr<RsaSsaParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaSsaParams(algorithm)); } 43 Algorithm* hash(); 48 RefPtr<Algorithm> m_hash;
|
| /libcore/luni/src/test/java/libcore/javax/crypto/ |
| KeyGeneratorTest.java | 47 String algorithm = service.getAlgorithm(); local 50 KeyGenerator kg1 = KeyGenerator.getInstance(algorithm); 51 assertEquals(algorithm, kg1.getAlgorithm()); 55 KeyGenerator kg2 = KeyGenerator.getInstance(algorithm, provider); 56 assertEquals(algorithm, kg2.getAlgorithm()); 61 KeyGenerator kg3 = KeyGenerator.getInstance(algorithm, provider.getName()); 62 assertEquals(algorithm, kg3.getAlgorithm()); 66 throw new Exception("Problem testing KeyPairGenerator." + algorithm, e); 74 private static void putKeySize(String algorithm, int keySize) { 75 algorithm = algorithm.toUpperCase() 136 String algorithm = kg.getAlgorithm(); local [all...] |
| /external/chromium_org/net/android/javatests/src/org/chromium/net/ |
| AndroidKeyStoreTestUtil.java | 38 String algorithm = null; local 41 algorithm = "RSA"; 44 algorithm = "DSA"; 47 algorithm = "EC"; 54 KeyFactory factory = KeyFactory.getInstance(algorithm); 60 Log.e(TAG, "Could not create " + algorithm + " factory instance!"); 63 Log.e(TAG, "Could not load " + algorithm + " private key from bytes!");
|
| /libcore/crypto/src/main/java/org/conscrypt/ |
| OpenSSLSecretKey.java | 31 private final String algorithm; field in class:OpenSSLSecretKey 37 public OpenSSLSecretKey(String algorithm, byte[] encoded) { 38 this.algorithm = algorithm; 45 public OpenSSLSecretKey(String algorithm, OpenSSLKey key) { 46 this.algorithm = algorithm; 64 return algorithm; 101 if (!algorithm.equals(other.getAlgorithm())) {
|
| /external/chromium_org/base/i18n/ |
| string_compare.h | 8 #include <algorithm>
|
| /external/stlport/test/unit/ |
| _template.cpp | 2 #include <algorithm>
|
| /ndk/tests/device/test-gnustl-full/unit/ |
| _template.cpp | 2 #include <algorithm>
|
| /ndk/tests/device/test-stlport/unit/ |
| _template.cpp | 2 #include <algorithm>
|
| /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
| MyMessageDigest1.java | 43 * @param algorithm 45 public MyMessageDigest1(String algorithm) { 46 super(algorithm);
|