MD5.finish

* Returns the finished MD5 hash. This also calls start to * reset the internal state.

struct MD5
@trusted pure nothrow @nogc
ubyte[16]
finish
()

Examples

//Simple example
MD5 hash;
hash.start();
hash.put(cast(ubyte) 0);
ubyte[16] result = hash.finish();

Meta

Suggestion Box / Bug Report