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

  /external/libchrome/crypto/
secure_hash.h 19 class CRYPTO_EXPORT SecureHash {
24 virtual ~SecureHash() {}
26 static std::unique_ptr<SecureHash> Create(Algorithm type);
32 // Create a clone of this SecureHash. The returned clone and this both
35 virtual std::unique_ptr<SecureHash> Clone() const = 0;
38 SecureHash() {}
41 DISALLOW_COPY_AND_ASSIGN(SecureHash);
sha2.cc 17 std::unique_ptr<SecureHash> ctx(SecureHash::Create(SecureHash::SHA256));
secure_hash.cc 24 class SecureHashSHA256 : public SecureHash {
30 SecureHashSHA256(const SecureHashSHA256& other) : SecureHash() {
48 std::unique_ptr<SecureHash> Clone() const override {
60 std::unique_ptr<SecureHash> SecureHash::Create(Algorithm algorithm) {
secure_hash_unittest.cc 26 std::unique_ptr<crypto::SecureHash> ctx(
27 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
53 std::unique_ptr<crypto::SecureHash> ctx1(
54 crypto::SecureHash::Create(crypto::SecureHash::SHA256));
57 std::unique_ptr<crypto::SecureHash> ctx2(ctx1->Clone());
58 std::unique_ptr<crypto::SecureHash> ctx3(ctx2->Clone());
79 std::unique_ptr<crypto::SecureHash> ctx(
80 crypto::SecureHash::Create(crypto::SecureHash::SHA256))
    [all...]
  /system/tpm/trunks/
tpm_generated.cc     [all...]

Completed in 284 milliseconds