chacha20poly1305 0.3.0

Pure Rust implementation of the ChaCha20Poly1305 Authenticated Encryption with Additional Data Cipher (RFC 8439) with optional architecture-specific hardware acceleration
Documentation
[badges.maintenance]
status = "experimental"
[dependencies.aead]
default-features = false
version = "0.2"

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

[dependencies.poly1305]
version = "0.5"

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

[features]
alloc = ["aead/alloc"]
default = ["alloc", "xchacha20poly1305"]
heapless = ["aead/heapless"]
xchacha20poly1305 = ["chacha20/xchacha20"]

[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\n"
documentation = "https://docs.rs/chacha20poly1305"
edition = "2018"
keywords = ["aead", "chacha20", "poly1305", "xchacha20", "xchacha20poly1305"]
license = "Apache-2.0 OR MIT"
name = "chacha20poly1305"
readme = "README.md"
repository = "https://github.com/RustCrypto/AEADs"
version = "0.3.0"
[package.metadata.docs.rs]
all-features = true