HomeSort by relevance Sort by last modified time
    Searched refs:SecureHash (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/crypto/
secure_hash.h 18 class CRYPTO_EXPORT SecureHash {
23 virtual ~SecureHash() {}
25 static SecureHash* Create(Algorithm type);
42 SecureHash() {}
45 DISALLOW_COPY_AND_ASSIGN(SecureHash);
sha2.cc 14 scoped_ptr<SecureHash> ctx(SecureHash::Create(SecureHash::SHA256));
secure_hash_unittest.cc 29 scoped_ptr<crypto::SecureHash> ctx(crypto::SecureHash::Create(
30 crypto::SecureHash::SHA256));
52 scoped_ptr<crypto::SecureHash> ctx1(crypto::SecureHash::Create(
53 crypto::SecureHash::SHA256));
54 scoped_ptr<crypto::SecureHash> ctx2(crypto::SecureHash::Create(
55 crypto::SecureHash::SHA256));
secure_hash_default.cc 18 class SecureHashSHA256NSS : public SecureHash {
30 // SecureHash implementation:
86 SecureHash* SecureHash::Create(Algorithm algorithm) {
secure_hash_openssl.cc 21 class SecureHashSHA256OpenSSL : public SecureHash {
92 SecureHash* SecureHash::Create(Algorithm algorithm) {
  /external/chromium_org/extensions/browser/
content_hash_tree_unittest.cc 13 using crypto::SecureHash;
41 scoped_ptr<SecureHash> hash(SecureHash::Create(SecureHash::SHA256));
content_hash_tree.cc 35 scoped_ptr<crypto::SecureHash> hash(
36 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
content_verify_job.h 20 class SecureHash;
129 scoped_ptr<crypto::SecureHash> current_hash_;
content_verify_job.cc 99 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
computed_hashes.cc 180 scoped_ptr<crypto::SecureHash> hash(
181 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
  /external/chromium_org/content/browser/download/
base_file.h 25 class SecureHash;
174 scoped_ptr<crypto::SecureHash> secure_hash_;
base_file.cc 47 secure_hash_.reset(crypto::SecureHash::Create(crypto::SecureHash::SHA256));
base_file_unittest.cc 85 secure_hash_.reset(crypto::SecureHash::Create(crypto::SecureHash::SHA256));
218 scoped_ptr<crypto::SecureHash> secure_hash_;
418 // This will fail until getting the hash state is supported in SecureHash.
  /external/chromium_org/components/component_updater/
component_patcher_operation.cc 23 using crypto::SecureHash;
121 const scoped_ptr<SecureHash> hasher(SecureHash::Create(SecureHash::SHA256));
component_unpacker.cc 31 using crypto::SecureHash;
177 scoped_ptr<SecureHash> sha256(SecureHash::Create(SecureHash::SHA256));
  /external/chromium_org/net/quic/
quic_crypto_server_stream.cc 198 scoped_ptr<crypto::SecureHash> hash(
199 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
  /external/chromium_org/chrome/browser/extensions/
install_signer.cc 90 scoped_ptr<crypto::SecureHash> hash(
91 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
  /external/chromium_org/net/cert/
x509_certificate.cc 718 scoped_ptr<crypto::SecureHash> hash(
719 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
  /external/chromium_org/net/quic/crypto/
crypto_server_test.cc 631 scoped_ptr<crypto::SecureHash> hash(
632 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
quic_crypto_server_config.cc 42 using crypto::SecureHash;
332 scoped_ptr<SecureHash> hash(SecureHash::Create(SecureHash::SHA256));
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_local_predictor.cc 318 scoped_ptr<crypto::SecureHash> hash(
319 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
554 scoped_ptr<crypto::SecureHash> hash(
555 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
    [all...]

Completed in 1277 milliseconds