chacha20poly1305 0.10.1

Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption with Additional Data Cipher (RFC 8439) with optional architecture-specific hardware acceleration. Also contains implementations of the XChaCha20Poly1305 extended nonce variant of ChaCha20Poly1305, and the reduced-round ChaCha8Poly1305 and ChaCha12Poly1305 lightweight variants.
Documentation
[dependencies.aead]
default-features = false
version = "0.5"

[dependencies.chacha20]
features = ["zeroize"]
version = "0.9"

[dependencies.cipher]
version = "0.4"

[dependencies.poly1305]
version = "0.8"

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

[features]
alloc = ["aead/alloc"]
default = ["alloc", "getrandom"]
getrandom = ["aead/getrandom", "rand_core"]
heapless = ["aead/heapless"]
rand_core = ["aead/rand_core"]
reduced-round = []
std = ["aead/std", "alloc"]
stream = ["aead/stream"]

[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption\nwith Additional Data Cipher (RFC 8439) with optional architecture-specific\nhardware acceleration. Also contains implementations of the XChaCha20Poly1305\nextended nonce variant of ChaCha20Poly1305, and the reduced-round\nChaCha8Poly1305 and ChaCha12Poly1305 lightweight variants.\n"
documentation = "https://docs.rs/chacha20poly1305"
edition = "2021"
keywords = ["aead", "chacha20", "poly1305", "xchacha20", "xchacha20poly1305"]
license = "Apache-2.0 OR MIT"
name = "chacha20poly1305"
readme = "README.md"
repository = "https://github.com/RustCrypto/AEADs/tree/master/chacha20poly1305"
version = "0.10.1"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]