Used to (re)initialize the MD5 digest.
Note: For this MD5 Digest implementation calling start after default construction is not necessary. Calling start is only necessary to reset the Digest.
Generic code which deals with different Digest types should always call start though.
MD5 digest; //digest.start(); //Not necessary digest.put(0);
See Implementation
Used to (re)initialize the MD5 digest.
Note: For this MD5 Digest implementation calling start after default construction is not necessary. Calling start is only necessary to reset the Digest.
Generic code which deals with different Digest types should always call start though.