crypto_auth_hmacsha512 static method

int crypto_auth_hmacsha512(
  1. Uint8List out,
  2. Uint8List m,
  3. Uint8List k
)

Implementation

static int crypto_auth_hmacsha512(Uint8List out, Uint8List m, Uint8List k) {
  _crypto_auth(TweetNaCl.crypto_hash, 128, out, m, k);
  return 0;
}