cryptoOnetimeauthVerify method

int cryptoOnetimeauthVerify(
  1. Uint8List h,
  2. Uint8List m,
  3. Uint8List k
)

Implementation

int cryptoOnetimeauthVerify(Uint8List h, Uint8List m, Uint8List k) {
  return cryptoOnetimeauthVerifyLen(h, m, m != null ? m.length : 0, k);
}