HMac constructor

HMac(
  1. Digest _digest,
  2. int _blockLength
)

Implementation

HMac(this._digest, this._blockLength) {
  _digestSize = _digest.digestSize;
  _inputPad = Uint8List(_blockLength);
  _outputBuf = Uint8List(_blockLength + _digestSize);
}