aes-gcm-siv 0.11.1

Pure Rust implementation of the AES-GCM-SIV Misuse-Resistant Authenticated Encryption Cipher (RFC 8452) with optional architecture-specific hardware acceleration
Documentation
[dependencies.aead]
default-features = false
version = "0.5"

[dependencies.aes]
optional = true
version = "0.8"

[dependencies.cipher]
version = "0.4"

[dependencies.ctr]
version = "0.9"

[dependencies.polyval]
default-features = false
version = "0.6"

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

[dependencies.zeroize]
default-features = false
version = "1"

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

[features]
alloc = ["aead/alloc"]
default = ["aes", "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 AES-GCM-SIV Misuse-Resistant Authenticated
Encryption Cipher (RFC 8452) with optional architecture-specific
hardware acceleration
"""
documentation = "https://docs.rs/aes-gcm-siv"
edition = "2021"
keywords = ["aead", "aes", "aes-gcm", "encryption", "siv"]
license = "MIT OR Apache-2.0"
name = "aes-gcm-siv"
readme = "README.md"
repository = "https://github.com/RustCrypto/AEADs"
rust-version = "1.56"
version = "0.11.1"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]