blob: dc5a4c3c689fe66546b5196cc6bf8e2a18f33b36 [file] [log] [blame]
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)
[package]
edition = "2018"
name = "aes-gcm"
version = "0.9.4"
authors = ["RustCrypto Developers"]
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"
readme = "README.md"
keywords = ["aead", "aes", "encryption", "gcm", "ghash"]
categories = ["cryptography", "no-std"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/RustCrypto/AEADs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies.aead]
version = "0.4"
default-features = false
[dependencies.aes]
version = "0.7.5"
optional = true
[dependencies.cipher]
version = "0.3"
[dependencies.ctr]
version = "0.8"
[dependencies.ghash]
version = "0.4.2"
default-features = false
[dependencies.subtle]
version = ">=2, <2.5"
default-features = false
[dependencies.zeroize]
version = ">=1, <1.4"
optional = true
default-features = false
[dev-dependencies.aead]
version = "0.4"
features = ["dev"]
default-features = false
[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"]