aes-gcm 0.9.3

Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration
Documentation
[dependencies.aead]
default-features = false
version = "0.4"

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

[dependencies.cipher]
version = "0.3"

[dependencies.ctr]
version = "0.8"

[dependencies.ghash]
default-features = false
version = "0.4.2"

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

[dependencies.zeroize]
default-features = false
optional = true
version = "=1.3"
[dev-dependencies.aead]
default-features = false
features = ["dev"]
version = "0.4"

[dev-dependencies.hex-literal]
version = "0.3"

[features]
alloc = ["aead/alloc"]
armv8 = ["aes/armv8", "ghash/armv8"]
default = ["aes", "alloc"]
force-soft = ["aes/force-soft", "ghash/force-soft"]
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 (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.9.3"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]