md5Of

This is a convenience alias for std.digest.digest using the MD5 implementation.

md5Of
(
T...
)
()

Examples

ubyte[16] hash = md5Of("abc");
assert(hash == digest!MD5("abc"));

Meta

Suggestion Box / Bug Report