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

1 2 3 4 5 6 7 8

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/
constants.hpp 15 namespace algorithm { namespace in namespace:boost
27 } // namespace algorithm
30 using algorithm::token_compress_on;
31 using algorithm::token_compress_off;
find_format.hpp 22 #include <boost/algorithm/string/concept.hpp>
23 #include <boost/algorithm/string/detail/find_format.hpp>
24 #include <boost/algorithm/string/detail/find_format_all.hpp>
27 Defines generic replace algorithms. Each algorithm replaces
33 namespace algorithm { namespace in namespace:boost
37 //! Generic replace algorithm
85 //! Generic replace algorithm
116 //! Generic replace algorithm
155 //! Generic replace all algorithm
205 //! Generic replace all algorithm
    [all...]
formatter.hpp 19 #include <boost/algorithm/string/detail/formatter.hpp>
33 namespace algorithm { namespace in namespace:boost
109 } // namespace algorithm
112 using algorithm::const_formatter;
113 using algorithm::identity_formatter;
114 using algorithm::empty_formatter;
115 using algorithm::dissect_formatter;
yes_no_type.hpp 15 namespace algorithm { namespace in namespace:boost
29 } // namespace algorithm
finder.hpp 14 #include <boost/algorithm/string/config.hpp>
22 #include <boost/algorithm/string/constants.hpp>
23 #include <boost/algorithm/string/detail/finder.hpp>
24 #include <boost/algorithm/string/compare.hpp>
35 namespace algorithm { namespace in namespace:boost
202 algorithm, with an exception that it return a range of
256 } // namespace algorithm
259 using algorithm::first_finder;
260 using algorithm::last_finder;
261 using algorithm::nth_finder
    [all...]
sequence_traits.hpp 16 #include <boost/algorithm/string/yes_no_type.hpp>
29 header for a specific container. They are located in boost/algorithm/string/stl
30 directory. Alternatively she can include boost/algorithm/string/std_collection_traits.hpp
35 namespace algorithm { namespace in namespace:boost
189 } // namespace algorithm
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
RepeatedSecretKeySpec.java 13 private String algorithm; field in class:RepeatedSecretKeySpec
15 public RepeatedSecretKeySpec(String algorithm)
17 this.algorithm = algorithm;
22 return algorithm;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format.hpp 14 #include <boost/algorithm/string/config.hpp>
18 #include <boost/algorithm/string/detail/find_format_store.hpp>
19 #include <boost/algorithm/string/detail/replace_storage.hpp>
22 namespace algorithm { namespace in namespace:boost
78 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
79 return ::boost::algorithm::detail::find_format_copy_impl2(
139 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) ) {
140 return ::boost::algorithm::detail::find_format_copy_impl2(
179 ::boost::algorithm::detail::replace( Input, M.begin(), M.end(), M.format_result() );
191 if( ::boost::algorithm::detail::check_find_result(Input, FindResult) )
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java 59 MessageDigest algorithm = MessageDigest.getInstance("MD5"); local
60 algorithm.reset();
61 algorithm.update(bytes);
62 return toHexString(algorithm.digest(), "");
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
PrivateKeyStub.java 34 String algorithm = null; field in class:PrivateKeyStub
42 * @param algorithm
46 public PrivateKeyStub(String algorithm, String format, byte[] encoded) {
47 this.algorithm = algorithm;
53 * Returns algorithm
57 return algorithm;
PublicKeyStub.java 37 String algorithm = null; field in class:PublicKeyStub
44 public PublicKeyStub(String algorithm, String format, byte[] encoded) {
45 this.algorithm = algorithm;
51 * returns algorithm
54 return algorithm;
  /external/chromium/crypto/
hmac_mac.cc 45 CCHmacAlgorithm algorithm; local
49 algorithm = kCCHmacAlgSHA1;
53 algorithm = kCCHmacAlgSHA256;
66 CCHmac(algorithm,
symmetric_key_unittest.cc 69 crypto::SymmetricKey::Algorithm algorithm; member in struct:PBKDF2TestVector
94 test_data.algorithm,
  /external/chromium_org/crypto/
symmetric_key_unittest.cc 69 crypto::SymmetricKey::Algorithm algorithm; member in struct:PBKDF2TestVector
94 test_data.algorithm,
  /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!");
  /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/libjingle/source/talk/base/
sslfingerprint.h 44 static SSLFingerprint* Create(const std::string& algorithm,
53 algorithm, digest_val, sizeof(digest_val), &digest_len);
58 return new SSLFingerprint(algorithm, digest_val, digest_len);
61 static SSLFingerprint* CreateFromRfc4572(const std::string& algorithm,
63 if (algorithm.empty())
78 return new SSLFingerprint(algorithm,
83 SSLFingerprint(const std::string& algorithm, const uint8* digest_in,
84 size_t digest_len) : algorithm(algorithm) {
88 : algorithm(from.algorithm), digest(from.digest) {
103 std::string algorithm; member in struct:talk_base::SSLFingerprint
    [all...]
  /libcore/crypto/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/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...]
  /libcore/luni/src/main/java/javax/crypto/spec/
SecretKeySpec.java 43 private final String algorithm; field in class:SecretKeySpec
47 * algorithm name.
51 * @param algorithm
52 * the algorithm name.
54 * if the key data or the algorithm name is null or if the key
57 public SecretKeySpec(byte[] key, String algorithm) {
64 if (algorithm == null) {
65 throw new IllegalArgumentException("algorithm == null");
68 this.algorithm = algorithm;
    [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;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
X509PublicKey.java 23 private final String algorithm; field in class:X509PublicKey
27 public X509PublicKey(String algorithm, byte[] encoded, byte[] keyBytes) {
28 this.algorithm = algorithm;
34 return algorithm;
47 StringBuilder buf = new StringBuilder("algorithm = ");
48 buf.append(algorithm);
  /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;

Completed in 295 milliseconds

1 2 3 4 5 6 7 8