call method

  1. @override
Bytes call(
  1. Bytes p0,
  2. Bytes p1
)

takes two parameters first: the input to sign second the secret key

Implementation

@override
Bytes call(p0, p1) => Hmac(sha256, p1).convert(p0).bytes;