101 lines
2.0 KiB
TOML
101 lines
2.0 KiB
TOML
# 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 are reading this file be aware that the original Cargo.toml
|
|
# will likely look very different (and much more reasonable).
|
|
# See Cargo.toml.orig for the original contents.
|
|
|
|
[package]
|
|
edition = "2021"
|
|
rust-version = "1.56"
|
|
name = "aes-gcm"
|
|
version = "0.10.3"
|
|
authors = ["RustCrypto Developers"]
|
|
description = """
|
|
Pure Rust implementation of the AES-GCM (Galois/Counter Mode)
|
|
Authenticated Encryption with Associated Data (AEAD) Cipher
|
|
with optional architecture-specific hardware acceleration
|
|
"""
|
|
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"
|
|
resolver = "1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = [
|
|
"--cfg",
|
|
"docsrs",
|
|
]
|
|
|
|
[dependencies.aead]
|
|
version = "0.5"
|
|
default-features = false
|
|
|
|
[dependencies.aes]
|
|
version = "0.8"
|
|
optional = true
|
|
|
|
[dependencies.cipher]
|
|
version = "0.4"
|
|
|
|
[dependencies.ctr]
|
|
version = "0.9"
|
|
|
|
[dependencies.ghash]
|
|
version = "0.5"
|
|
default-features = false
|
|
|
|
[dependencies.subtle]
|
|
version = "2"
|
|
default-features = false
|
|
|
|
[dependencies.zeroize]
|
|
version = "1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.aead]
|
|
version = "0.5"
|
|
features = ["dev"]
|
|
default-features = false
|
|
|
|
[dev-dependencies.hex-literal]
|
|
version = "0.3"
|
|
|
|
[features]
|
|
alloc = ["aead/alloc"]
|
|
arrayvec = ["aead/arrayvec"]
|
|
default = [
|
|
"aes",
|
|
"alloc",
|
|
"getrandom",
|
|
]
|
|
getrandom = [
|
|
"aead/getrandom",
|
|
"rand_core",
|
|
]
|
|
heapless = ["aead/heapless"]
|
|
rand_core = ["aead/rand_core"]
|
|
std = [
|
|
"aead/std",
|
|
"alloc",
|
|
]
|
|
stream = ["aead/stream"]
|