Home | History | Annotate | Download | only in base

Lines Matching refs:digest

13 // MD5 stands for Message Digest algorithm 5.
31 // MD5Digest digest; // the result of the computation
32 // MD5Final(&digest, &ctx);
34 // You can call MD5DigestToBase16() to generate a string of the digest.
46 // The given 'digest' structure will be filled with the result data.
47 BASE_API void MD5Sum(const void* data, size_t length, MD5Digest* digest);
58 // Finalizes the MD5 operation and fills the buffer with the digest.
59 BASE_API void MD5Final(MD5Digest* digest, MD5Context* pCtx);
61 // Converts a digest into human-readable hexadecimal.
62 BASE_API std::string MD5DigestToBase16(const MD5Digest& digest);