Hmac.sha256 constructor

Hmac.sha256(
  1. Uint8List key
)

HMAC-SHA256 with key (any length).

Implementation

Hmac.sha256(Uint8List key) : this._(Sha256.new, key, 32);