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
)
(
const(T)[][] data...
)
if (
!hasIndirections!T
)

Members

Functions

arrOfArrCastInPlace
T[][] arrOfArrCastInPlace(S[][] arrs)
Undocumented in source. Be warned that the author may not have intended to support it.
getDigestString
string getDigestString(const(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