Function ring::hmac::verify

source · []
pub fn verify(
    key: &VerificationKey,
    data: &[u8],
    signature: &[u8]
) -> Result<(), Unspecified>
Expand description

Calculates the HMAC of data using the key key, and verifies whether the resultant value equals signature, in one step.

The verification will be done in constant time to prevent timing attacks.