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_EXPORT void MD5Sum(const void* data, size_t length, MD5Digest* digest);
58 // Finalizes the MD5 operation and fills the buffer with the digest.
59 BASE_EXPORT void MD5Final(MD5Digest* digest, MD5Context* context);
61 // MD5IntermediateFinal() generates a digest without finalizing the MD5
63 // without affecting the digest generated for the entire input.
64 BASE_EXPORT void MD5IntermediateFinal(MD5Digest* digest,
67 // Converts a digest into human-readable hexadecimal.
68 BASE_EXPORT std::string MD5DigestToBase16(const MD5Digest& digest);