Home
last modified time | relevance | path

Searched refs:SecureHashAlgorithm (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/angle/src/common/base/anglebase/
H A Dsha1.cc64 const int SecureHashAlgorithm::kDigestSizeBytes = 20;
66 void SecureHashAlgorithm::Init() in Init()
82 void SecureHashAlgorithm::Final() in Final()
91 void SecureHashAlgorithm::Update(const void *data, size_t nbytes) in Update()
103 void SecureHashAlgorithm::Pad() in Pad()
129 void SecureHashAlgorithm::Process() in Process()
174 std::array<uint8_t, kSHA1Length> SecureHashAlgorithm::DigestAsArray() const in DigestAsArray()
177 memcpy(digest.data(), Digest(), SecureHashAlgorithm::kDigestSizeBytes); in DigestAsArray()
183 char hash[SecureHashAlgorithm::kDigestSizeBytes]; in SHA1HashString()
186 return std::string(hash, SecureHashAlgorithm::kDigestSizeBytes); in SHA1HashString()
[all …]
H A Dsha1.h55 class SecureHashAlgorithm
58 SecureHashAlgorithm() { Init(); } in SecureHashAlgorithm() function
/aosp_15_r20/external/libchrome/base/
H A Dsha1.cc36 class SecureHashAlgorithm { class
38 SecureHashAlgorithm() { Init(); } in SecureHashAlgorithm() function in base::SecureHashAlgorithm
96 const int SecureHashAlgorithm::kDigestSizeBytes = 20;
98 void SecureHashAlgorithm::Init() { in Init()
113 void SecureHashAlgorithm::Final() { in Final()
121 void SecureHashAlgorithm::Update(const void* data, size_t nbytes) { in Update()
131 void SecureHashAlgorithm::Pad() { in Pad()
155 void SecureHashAlgorithm::Process() { in Process()
199 char hash[SecureHashAlgorithm::kDigestSizeBytes]; in SHA1HashString()
202 return std::string(hash, SecureHashAlgorithm::kDigestSizeBytes); in SHA1HashString()
[all …]
/aosp_15_r20/external/perfetto/src/base/http/
H A Dsha1.cc48 class SecureHashAlgorithm { class
50 SecureHashAlgorithm() { Init(); } in SecureHashAlgorithm() function in perfetto::base::__anoneeb28ff00111::SecureHashAlgorithm
114 void SecureHashAlgorithm::Init() { in Init()
129 void SecureHashAlgorithm::Update(const void* data, size_t nbytes) { in Update()
139 void SecureHashAlgorithm::Final() { in Final()
147 void SecureHashAlgorithm::Process() { in Process()
190 void SecureHashAlgorithm::Pad() { in Pad()
217 SecureHashAlgorithm sha; in SHA1HashBytes()
/aosp_15_r20/external/angle/src/libANGLE/
H A DShader.cpp314 void AppendHashValue(angle::base::SecureHashAlgorithm &hasher, T value) in AppendHashValue()
997 angle::base::SecureHashAlgorithm hasher; in setShaderKey()
/aosp_15_r20/external/angle/src/libANGLE/renderer/metal/
H A Dmtl_library_cache.mm85 angle::base::SecureHashAlgorithm sha1;