pub fn crypto_auth_hmacsha256_verify(
mac: &Mac,
input: &[u8],
key: &Key,
) -> Result<(), Error>Expand description
Verifies that mac is the correct authenticator for message using key.
ยงErrors
Returns an error if mac is not valid for input under key.