Hmac constructor Null safety
Implementation
Hmac(this.hash, List<int> key) {
blockSize = hash.blockSize ~/ 8;
outSize = hash.outSize;
_init(List<int>.from(key));
}
Hmac(this.hash, List<int> key) {
blockSize = hash.blockSize ~/ 8;
outSize = hash.outSize;
_init(List<int>.from(key));
}