eax 0.5.0

Pure Rust implementation of the EAX Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration This scheme is only based on a block cipher. It uses counter mode (CTR) for encryption and CBC mode for generating a OMAC/CMAC/CBCMAC (all names for the same thing).
Documentation
[dependencies.aead]
default-features = false
version = "0.5"

[dependencies.cipher]
version = "0.4"

[dependencies.cmac]
version = "0.7"

[dependencies.ctr]
version = "0.9"

[dependencies.subtle]
default-features = false
version = "2"
[dev-dependencies.aead]
default-features = false
features = ["dev"]
version = "0.5"

[dev-dependencies.aes]
version = "0.8"

[features]
alloc = ["aead/alloc"]
default = ["alloc", "getrandom"]
getrandom = ["aead/getrandom"]
heapless = ["aead/heapless"]
std = ["aead/std", "alloc"]
stream = ["aead/stream"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the EAX\nAuthenticated Encryption with Associated Data (AEAD) Cipher\nwith optional architecture-specific hardware acceleration\n\nThis scheme is only based on a block cipher. It uses counter mode (CTR) for\nencryption and CBC mode for generating a OMAC/CMAC/CBCMAC (all names for the same thing).\n"
documentation = "https://docs.rs/eax"
edition = "2021"
keywords = ["aead", "aes", "encryption"]
license = "Apache-2.0 OR MIT"
name = "eax"
readme = "README.md"
repository = "https://github.com/RustCrypto/AEADs"
rust-version = "1.56"
version = "0.5.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]