HomeSort by relevance Sort by last modified time
    Searched refs:algorithm (Results 26 - 50 of 3728) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
replace.hpp 14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/find_format.hpp>
23 #include <boost/algorithm/string/finder.hpp>
24 #include <boost/algorithm/string/formatter.hpp>
25 #include <boost/algorithm/string/compare.hpp>
28 Defines various replace algorithms. Each algorithm replaces
33 namespace algorithm { namespace in namespace:boost
37 //! Replace range algorithm
64 return ::boost::algorithm::find_format_copy(
67 ::boost::algorithm::range_finder(SearchRange)
    [all...]
yes_no_type.hpp 15 namespace algorithm { namespace in namespace:boost
29 } // namespace algorithm
  /external/chromium_org/content/child/webcrypto/
structured_clone.cc 36 // Converts a KeyAlgorithm into an equivalent Algorithm for import.
38 const blink::WebCryptoKeyAlgorithm& algorithm) {
39 switch (algorithm.paramsType()) {
41 return CreateAlgorithm(algorithm.id());
43 return CreateHmacImportAlgorithm(algorithm.hmacParams()->hash().id());
46 algorithm.id(), algorithm.rsaHashedParams()->hash().id());
63 const blink::WebCryptoKeyAlgorithm& algorithm,
65 if (algorithm.id() != key.algorithm().id()
    [all...]
algorithm_dispatch.cc 22 Status DecryptDontCheckKeyUsage(const blink::WebCryptoAlgorithm& algorithm,
26 if (algorithm.id() != key.algorithm().id())
30 Status status = GetAlgorithmImplementation(algorithm.id(), &impl);
34 return impl->Decrypt(algorithm, key, data, buffer);
37 Status EncryptDontCheckUsage(const blink::WebCryptoAlgorithm& algorithm,
41 if (algorithm.id() != key.algorithm().id())
45 Status status = GetAlgorithmImplementation(algorithm.id(), &impl);
49 return impl->Encrypt(algorithm, key, data, buffer)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/
JcaJceHelper.java 24 String algorithm)
27 Mac createMac(String algorithm)
30 KeyAgreement createKeyAgreement(String algorithm)
33 AlgorithmParameterGenerator createAlgorithmParameterGenerator(String algorithm)
36 AlgorithmParameters createAlgorithmParameters(String algorithm)
39 KeyGenerator createKeyGenerator(String algorithm)
42 KeyFactory createKeyFactory(String algorithm)
45 SecretKeyFactory createSecretKeyFactory(String algorithm)
48 KeyPairGenerator createKeyPairGenerator(String algorithm)
51 MessageDigest createDigest(String algorithm)
    [all...]
  /external/conscrypt/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 public 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...]
  /libcore/luni/src/main/java/java/security/
KeyPairGenerator.java 26 * private key and its related public key utilizing the algorithm it was
45 // Store used algorithm
46 private String algorithm; field in class:KeyPairGenerator
50 * the algorithm to use.
52 * @param algorithm
53 * the name of algorithm to use
55 protected KeyPairGenerator(String algorithm) {
56 this.algorithm = algorithm;
60 * Returns the name of the algorithm of this {@code KeyPairGenerator}
    [all...]
AlgorithmParameterGenerator.java 25 * generating parameters for the algorithm it was initialized with.
44 //Store used algorithm
45 private final String algorithm; field in class:AlgorithmParameterGenerator
55 * @param algorithm
56 * the name of the algorithm.
60 String algorithm) {
62 this.algorithm = algorithm;
67 * Returns the name of the algorithm.
69 * @return the name of the algorithm
    [all...]
KeyFactory.java 43 // The algorithm.
44 private final String algorithm; field in class:KeyFactory
54 * @param algorithm
55 * the algorithm to use.
59 String algorithm) {
61 this.algorithm = algorithm;
67 * algorithm.
69 * @param algorithm
70 * the name of the algorithm
    [all...]
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...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathBuilder.java 51 // Store algorithm name
52 private final String algorithm; field in class:CertPathBuilder
61 * @param algorithm
62 * the desired algorithm available at the provider.
65 String algorithm) {
67 this.algorithm = algorithm;
72 * Returns the algorithm name of this instance.
74 * @return the algorithm name of this instance.
77 return algorithm;
    [all...]
CertPathValidator.java 52 // Store used algorithm value
53 private final String algorithm; field in class:CertPathValidator
62 * @param algorithm
63 * the name of the algorithm.
66 Provider provider, String algorithm) {
68 this.algorithm = algorithm;
73 * Returns the certification path algorithm name.
75 * @return the certification path algorithm name.
78 return algorithm;
    [all...]
  /libcore/luni/src/main/java/javax/crypto/
SecretKeyFactory.java 53 // Store used algorithm name
54 private final String algorithm; field in class:SecretKeyFactory
63 * @param algorithm
64 * the algorithm name for the secret key.
67 Provider provider, String algorithm) {
69 this.algorithm = algorithm;
74 * Returns the name of the secret key algorithm.
76 * @return the name of the secret key algorithm.
79 return algorithm;
    [all...]
  /external/chromium_org/third_party/webrtc/base/
sslfingerprint.h 24 static SSLFingerprint* Create(const std::string& algorithm,
27 static SSLFingerprint* Create(const std::string& algorithm,
30 static SSLFingerprint* CreateFromRfc4572(const std::string& algorithm,
33 SSLFingerprint(const std::string& algorithm, const uint8* digest_in,
44 std::string algorithm; member in struct:rtc::SSLFingerprint
openssldigest.h 23 // Creates an OpenSSLDigest with |algorithm| as the hash algorithm.
24 explicit OpenSSLDigest(const std::string& algorithm);
34 static bool GetDigestEVP(const std::string &algorithm,
38 std::string* algorithm);
40 static bool GetDigestSize(const std::string &algorithm,
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
SecretKeySpecTest.java 38 * SecretKeySpec(byte[] key, String algorithm) method testing. Tests that
45 String algorithm = "Algorithm"; local
48 new SecretKeySpec(new byte[] {}, algorithm);
55 new SecretKeySpec(null, algorithm);
64 + "in the case of null algorithm.");
68 SecretKeySpec ks = new SecretKeySpec(key, algorithm);
76 * SecretKeySpec(byte[] key, int offset, int len, String algorithm) method
85 String algorithm = "Algorithm"; local
143 String algorithm = "Algorithm"; local
161 String algorithm = "Algorithm"; local
174 String algorithm = "Algorithm"; local
188 String algorithm = "Algorithm"; local
214 String algorithm = "Algorithm"; local
229 String algorithm = "Algorithm"; local
    [all...]
  /external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
SecretKeySpecTest.java 38 * SecretKeySpec(byte[] key, String algorithm) method testing. Tests that
45 String algorithm = "Algorithm"; local
48 new SecretKeySpec(new byte[] { }, algorithm);
55 new SecretKeySpec(null, algorithm);
64 + "in the case of null algorithm.");
68 SecretKeySpec ks = new SecretKeySpec(key, algorithm);
76 * SecretKeySpec(byte[] key, int offset, int len, String algorithm) method
85 String algorithm = "Algorithm"; local
162 String algorithm = "Algorithm"; local
175 String algorithm = "Algorithm"; local
189 String algorithm = "Algorithm"; local
215 String algorithm = "Algorithm"; local
230 String algorithm = "Algorithm"; local
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactory.java 41 private static final String PROPERTY_NAME = "ssl.KeyManagerFactory.algorithm";
47 * Returns the default key manager factory algorithm name.
49 * The default algorithm name is specified by the security property:
50 * {@code 'ssl.KeyManagerFactory.algorithm'}.
52 * @return the default algorithm name.
55 String algorithm = Security.getProperty(PROPERTY_NAME); local
56 return (algorithm != null ? algorithm : DEFAULT_PROPERTY);
61 * management algorithm.
63 * @param algorithm
147 private final String algorithm; field in class:KeyManagerFactory
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 48 * private final String algorithm;
52 * String algorithm) {
55 * this.algorithm = algorithm;
58 * public static Foo getInstance(String algorithm) {
59 * Engine.SpiAndProvider sap = ENGINE.getInstance(algorithm, null);
60 * return new Foo((FooSpi) sap.spi, sap.provider, algorithm);
63 * public static Foo getInstance(String algorithm, Provider provider) {
64 * Object spi = ENGINE.getInstance(algorithm, provider, null);
65 * return new Foo((FooSpi) spi, provider, algorithm);
94 private final String algorithm; field in class:Engine.ServiceCacheEntry
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
system_menu_insertion_delegate_win.cc 9 #include <algorithm>
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.swap/
iter_swap.pass.cpp 10 // <algorithm>
17 #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>
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCryptoKey.cpp 44 WebCryptoKeyPrivate(PassOwnPtr<WebCryptoKeyHandle> handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm, WebCryptoKeyUsageMask usages)
48 , algorithm(algorithm)
51 ASSERT(!algorithm.isNull());
57 const WebCryptoKeyAlgorithm algorithm; member in class:blink::WebCryptoKeyPrivate
61 WebCryptoKey WebCryptoKey::create(WebCryptoKeyHandle* handle, WebCryptoKeyType type, bool extractable, const WebCryptoKeyAlgorithm& algorithm, WebCryptoKeyUsageMask usages)
64 key.m_private = adoptRef(new WebCryptoKeyPrivate(adoptPtr(handle), type, extractable, algorithm, usages));
91 const WebCryptoKeyAlgorithm& WebCryptoKey::algorithm() const function in class:blink::WebCryptoKey
94 return m_private->algorithm;
  /external/chromium_org/third_party/WebKit/Source/core/frame/
SubresourceIntegrityTest.cpp 65 HashAlgorithm algorithm; local
68 EXPECT_FALSE(SubresourceIntegrity::parseIntegrityAttribute(attribute, integrity, algorithm));
72 EXPECT_TRUE(SubresourceIntegrity::parseIntegrityAttribute(attribute, integrity, algorithm));
74 EXPECT_EQ(algorithm, HashAlgorithmSha256);
78 EXPECT_TRUE(SubresourceIntegrity::parseIntegrityAttribute(attribute, integrity, algorithm));
80 EXPECT_EQ(algorithm, HashAlgorithmSha256);
84 EXPECT_TRUE(SubresourceIntegrity::parseIntegrityAttribute(attribute, integrity, algorithm));
86 EXPECT_EQ(algorithm, HashAlgorithmSha384);
90 EXPECT_TRUE(SubresourceIntegrity::parseIntegrityAttribute(attribute, integrity, algorithm));
92 EXPECT_EQ(algorithm, HashAlgorithmSha512)
    [all...]

Completed in 2054 milliseconds

12 3 4 5 6 7 8 91011>>