polyval 0.7.1

POLYVAL is a GHASH-like universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC)
Documentation
//! Property-based tests.

#![cfg(all(any(unix, windows), feature = "hazmat"))]

use polyval::{
    BLOCK_SIZE, Block, KEY_SIZE, Polyval, hazmat::FieldElement, universal_hash::UniversalHash,
};
use proptest::prelude::*;

/// Number of blocks to compute in parallel
const PARALLEL_BLOCKS: usize = 4;

proptest! {
    /// Test explicitly parallel implementation for equivalence to the `soft` backend (which is what
    /// powers `Add`/`Mul` trait impls on `FieldElement`.
    #[test]
    fn par_soft_equivalence(
        key in any::<[u8; KEY_SIZE]>(),
        data in any::<[u8; BLOCK_SIZE * PARALLEL_BLOCKS]>()
    ) {
        let mut polyval = Polyval::new(&key.into());
        polyval.update_padded(&data);
        let actual = polyval.finalize();

        let h = FieldElement::from(key);
        let mut y = FieldElement::default();
        for block in Block::slice_as_chunks(&data).0 {
            y = (y + block.into()) * h;
        }

        prop_assert_eq!(actual, Block::from(y));
    }
}