crypto_auth_hmacsha256_verify method
int
crypto_auth_hmacsha256_verify(
- Pointer<
UnsignedChar> h, - Pointer<
UnsignedChar> in1, - int inlen,
- Pointer<
UnsignedChar> k,
Implementation
int crypto_auth_hmacsha256_verify(
ffi.Pointer<ffi.UnsignedChar> h,
ffi.Pointer<ffi.UnsignedChar> in1,
int inlen,
ffi.Pointer<ffi.UnsignedChar> k,
) {
return _crypto_auth_hmacsha256_verify(
h,
in1,
inlen,
k,
);
}