[dependencies.aead]
default-features = false
version = "0.3"
[dependencies.aes]
optional = true
version = "0.5"
[dependencies.block-cipher]
version = "0.8"
[dependencies.ghash]
default-features = false
version = "0.3"
[dependencies.subtle]
default-features = false
version = "2"
[dependencies.zeroize]
default-features = false
optional = true
version = "1"
[dev-dependencies.hex-literal]
version = "0.2"
[features]
alloc = ["aead/alloc"]
default = ["aes", "alloc"]
heapless = ["aead/heapless"]
std = ["aead/std", "alloc"]
[package]
authors = ["RustCrypto Developers"]
categories = ["cryptography", "no-std"]
description = "Pure Rust implementation of the AES-GCM (Galois/Counter Mode)\nAuthenticated Encryption with Associated Data (AEAD) Cipher\nwith optional architecture-specific hardware acceleration\n"
documentation = "https://docs.rs/aes-gcm"
edition = "2018"
keywords = ["aead", "aes", "encryption", "gcm", "ghash"]
license = "Apache-2.0 OR MIT"
name = "aes-gcm"
readme = "README.md"
repository = "https://github.com/RustCrypto/AEADs"
version = "0.7.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]