getDigestString

Get digest string of given data. Short-hand for std.digest.md5Of (and similar) and toHexString. Similar to the old std.md5.getDigestString.

template getDigestString(Digest)
string
getDigestString
(
T
)
(
in T[][] data...
)
if (
!hasIndirections!T
)

Members

Functions

getDigestString
string getDigestString(T[][] data)
Undocumented in source. Be warned that the author may not have intended to support it.
getDigestStringImpl
string getDigestStringImpl(ubyte[][] data)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

assert(getDigestString!MD5("abc") == "900150983CD24FB0D6963F7D28E17F72");

Meta