SHA3.finish

Calculate the final hash value.

  1. ubyte[] finish(ubyte[] output)
  2. ubyte[digestLength] finish()
    struct SHA3(uint bitLength)
    ubyte[digestLength]
    finish
    nothrow @nogc
    (
    )
    if (
    bitLength == 224 ||
    bitLength == 256
    ||
    bitLength == 384
    ||
    bitLength == 512
    )

Return Value

Type: ubyte[digestLength]

the hash value

Meta