Hmac.sha1 constructor
Hmac.sha1(
- Uint8List key
HMAC-SHA1 with key (any length; longer than 64 bytes is hashed
first, per RFC 2104).
Implementation
Hmac.sha1(Uint8List key) : this._(Sha1.new, key, 20);
HMAC-SHA1 with key (any length; longer than 64 bytes is hashed
first, per RFC 2104).
Hmac.sha1(Uint8List key) : this._(Sha1.new, key, 20);