Lines Matching full:md5
5 * MD5 Message-Digest Algorithm (RFC 1321).
8 * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
40 #include "llvm/Support/MD5.h"
50 // The basic MD5 functions.
60 // The MD5 transformation for all four rounds.
79 const uint8_t *MD5::body(ArrayRef<uint8_t> Data) { in body()
186 MD5::MD5() = default;
189 void MD5::update(ArrayRef<uint8_t> Data) { in update()
227 void MD5::update(StringRef Str) { in update()
234 void MD5::final(MD5Result &Result) { in final()
264 MD5::MD5Result MD5::final() { in final()
270 MD5::MD5Result MD5::result() { in result()
281 SmallString<32> MD5::MD5Result::digest() const { in digest()
287 void MD5::stringifyResult(MD5Result &Result, SmallVectorImpl<char> &Str) { in stringifyResult()
291 MD5::MD5Result MD5::hash(ArrayRef<uint8_t> Data) { in hash()
292 MD5 Hash; in hash()
294 MD5::MD5Result Res; in hash()