aes-gcm 0.5.0

Pure Rust implementation of the AES-GCM (Galois/Counter Mode) Authenticated Encryption with Associated Data (AEAD) Cipher with optional architecture-specific hardware acceleration
Documentation
[[bench]]
harness = false
name = "aes-gcm"
[badges.codecov]
branch = "master"
repository = "RustCrypto/AEADs"
service = "github"

[badges.maintenance]
status = "actively-developed"
[dependencies.aead]
default-features = false
version = "0.2"

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

[dependencies.block-cipher-trait]
version = "0.6"

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

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

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

[dev-dependencies.criterion-cycles-per-byte]
version = "0.1.1"

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

[features]
alloc = ["aead/alloc"]
default = ["aes", "alloc"]
heapless = ["aead/heapless"]

[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.5.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]