Lines Matching refs:data
24 // generate the MD5 sum of the given data.
26 // You can also compute the MD5 sum of data incrementally by making multiple
28 // MD5Context ctx; // intermediate MD5 data: do not use
44 // Used for storing intermediate data during an MD5 computation. Callers
45 // should not access the data.
52 // For the given buffer of |data| as a std::string_view, updates the given MD5
53 // context with the sum of the data. You can call this any number of times
55 void MD5Update(MD5Context* context, std::string_view data);
68 // Computes the MD5 sum of the given data buffer with the given length.
69 // The given 'digest' structure will be filled with the result data.
70 void MD5Sum(const void* data, size_t length, MD5Digest* digest);