hmacEncode function

Bytes hmacEncode(
  1. Bytes p0,
  2. Bytes p1
)

Implementation

Bytes hmacEncode(Bytes p0, Bytes p1) => Hmac(sha256, p1).convert(p0).bytes;