import std.c.stdio; import std.md5; int main() { ubyte [] digest = new ubyte[16]; ubyte * dptr = digest; std.md5.sum(dptr, "blahblahmydata"); return 0; }