Home
last modified time | relevance | path

Searched refs:GetDigest (Results 1 – 13 of 13) sorted by relevance

/external/lzma/CS/7zip/Common/
DCRC.cs40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; } in GetDigest() method in SevenZip.CRC
47 return crc.GetDigest(); in CalculateDigest()
/external/cronet/base/hash/
Dsha1_nacl.cc90 const unsigned char* SHA1Context::GetDigest() const { in GetDigest() function in base::SHA1Context
176 memcpy(digest.data(), context.GetDigest(), kSHA1Length); in SHA1Final()
198 memcpy(hash, context.GetDigest(), kSHA1Length); in SHA1HashBytes()
Dsha1_nacl.h19 const unsigned char* GetDigest() const;
/external/lzma/Java/SevenZip/
DLzmaBench.java122 public int GetDigest() in GetDigest() method in LzmaBench.CrcOutStream
124 return CRC.GetDigest(); in GetDigest()
370 if (crcOutStream.GetDigest() != crc.GetDigest()) in LzmaBenchmark()
DCRC.java48 public int GetDigest() in GetDigest() method in CRC
/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaBench.cs124 public UInt32 GetDigest() { return CRC.GetDigest(); } in GetDigest() method in SevenZip.LzmaBench.CrcOutStream
317 if (crcOutStream.GetDigest() != crc.GetDigest()) in LzmaBenchmark()
/external/cronet/third_party/boringssl/src/crypto/hmac_extra/
Dhmac_test.cc71 static const EVP_MD *GetDigest(const std::string &name) { in GetDigest() function
92 const EVP_MD *digest = GetDigest(digest_str); in TEST()
/external/boringssl/src/crypto/hmac_extra/
Dhmac_test.cc71 static const EVP_MD *GetDigest(const std::string &name) { in GetDigest() function
92 const EVP_MD *digest = GetDigest(digest_str); in TEST()
/external/rust/crates/quiche/deps/boringssl/src/crypto/hmac_extra/
Dhmac_test.cc71 static const EVP_MD *GetDigest(const std::string &name) { in GetDigest() function
92 const EVP_MD *digest = GetDigest(digest_str); in TEST()
/external/boringssl/src/crypto/evp/
Devp_test.cc90 static const EVP_MD *GetDigest(FileTest *t, const std::string &name) { in OPENSSL_MSVC_PRAGMA()
264 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("MGF1Digest")); in SetupContext()
270 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("OAEPDigest")); in SetupContext()
411 digest = GetDigest(t, t->GetAttributeOrDie("Digest")); in TestEVP()
/external/cronet/third_party/boringssl/src/crypto/evp/
Devp_test.cc90 static const EVP_MD *GetDigest(FileTest *t, const std::string &name) { in OPENSSL_MSVC_PRAGMA()
264 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("MGF1Digest")); in SetupContext()
270 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("OAEPDigest")); in SetupContext()
411 digest = GetDigest(t, t->GetAttributeOrDie("Digest")); in TestEVP()
/external/rust/crates/quiche/deps/boringssl/src/crypto/evp/
Devp_test.cc90 static const EVP_MD *GetDigest(FileTest *t, const std::string &name) { in OPENSSL_MSVC_PRAGMA()
264 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("MGF1Digest")); in SetupContext()
270 const EVP_MD *digest = GetDigest(t, t->GetAttributeOrDie("OAEPDigest")); in SetupContext()
411 digest = GetDigest(t, t->GetAttributeOrDie("Digest")); in TestEVP()
/external/lzma/CPP/7zip/Archive/7z/
D7zOut.cpp68 RINOK(WriteDirectUInt32(crc.GetDigest())); in WriteFinishHeader()