SHA3

Implementation of SHA3.

Standard: FIPS 202, SHA 3

@safe
struct SHA3 (
uint bitLength
) if (
bitLength == 224 ||
bitLength == 256
||
bitLength == 384
||
bitLength == 512
) {
enum name;
enum digestLength;
enum blockSize;
}

Members

Functions

finish
ubyte[] finish(ubyte[] output)

Calculate the final hash value.

finish
ubyte[digestLength] finish()

Calculate the final hash value.

Meta