aead 0.4.0-pre

Traits for Authenticated Encryption with Associated Data (AEAD) algorithms, such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
Documentation
[package]
name = "aead"
version = "0.4.0-pre" # Also update html_root_url in lib.rs when bumping this
description = """
Traits for Authenticated Encryption with Associated Data (AEAD) algorithms,
such as AES-GCM as ChaCha20Poly1305, which provide a high-level API
"""
authors = ["RustCrypto Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/aead"
repository = "https://github.com/RustCrypto/traits"
keywords = ["crypto", "encryption"]
categories = ["cryptography", "no-std"]

[dependencies]
generic-array = { version = "0.14", default-features = false }
heapless = { version = "0.5", optional = true }
blobby = { version = "0.3", optional = true }

[features]
default = ["alloc"]
alloc = []
dev = ["blobby"]
std = ["alloc"]
stream = []

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