RIPEMD160.start

Used to (re)initialize the RIPEMD160 digest.

Note: For this RIPEMD160 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.

struct RIPEMD160
@safe pure nothrow @nogc
void
start
()

Examples

RIPEMD160 digest;
//digest.start(); //Not necessary
digest.put(0);

Meta

Suggestion Box / Bug Report