Constructors
Declared in <bdlde_md5.h>
Construct an MD5 digest having the value corresponding to no data having been provided.
Md5();
» more...
Construct an MD5 digest having the value of the specified original digest.
Md5(Md5 const& original);
» more...
Construct an MD5 digest corresponding to the specified data having the specified length (in bytes). The behavior is undefined unless 0 <= length. Note that if data is 0, then length also must be 0.
Md5(
void const* data,
int length);
» more...