eme2 0.3.0

EME2 (ECB-Mask-ECB) wide-block cipher mode of operation
Documentation
//! Main Tests
//!
//! Panicking assertions (`.unwrap()`/`.expect()`/`assert!`) are the intended
//! failure mode in test code, so the crate's strict `unwrap_used`/
//! `expect_used`/`panic` lints are relaxed here; likewise `as`-casts on
//! small, non-secret test fixture values.
#![cfg_attr(
    test,
    allow(
        clippy::unwrap_used,
        clippy::expect_used,
        clippy::panic,
        clippy::as_conversions,
        clippy::cast_possible_truncation
    )
)]

/// Test AES compability
mod aes;
/// Tests for the `extended` feature (generic block sizes beyond 128 bits)
#[cfg(feature = "extended")]
mod extended;
/// Known-answer and reference cross-check tests
mod kat;
/// Test Serpent compability
mod serpent;
/// Test Threefish compability
mod threefish;