* Returns the finished MD5 hash. This also calls start to * reset the internal state.
//Simple example MD5 hash; hash.start(); hash.put(cast(ubyte) 0); ubyte[16] result = hash.finish();
See Implementation
* Returns the finished MD5 hash. This also calls start to * reset the internal state.