HMac.put

Update the MAC with a block of bytes.

struct HMac(D, uint blockSize = D.blockSize)
@safe
void
put
nothrow @nogc
(
in ubyte[] input...
)
in { assert (initialized, "HMac not initialized! Call init() first"); }
if (
isDigest!D
)

Parameters

input
Type: ubyte[]

The ubyte slice containing the data.

Meta