52 lines
1.2 KiB
TOML
52 lines
1.2 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 = "ghash"
|
|
version = "0.5.1"
|
|
authors = ["RustCrypto Developers"]
|
|
description = """
|
|
Universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC),
|
|
as in the AES-GCM authenticated encryption cipher.
|
|
"""
|
|
documentation = "https://docs.rs/ghash"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"aes-gcm",
|
|
"crypto",
|
|
"universal-hashing",
|
|
]
|
|
categories = [
|
|
"cryptography",
|
|
"no-std",
|
|
]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/RustCrypto/universal-hashes"
|
|
|
|
[dependencies.opaque-debug]
|
|
version = "0.3"
|
|
|
|
[dependencies.polyval]
|
|
version = "0.6.2"
|
|
|
|
[dependencies.zeroize]
|
|
version = "1"
|
|
optional = true
|
|
default-features = false
|
|
|
|
[dev-dependencies.hex-literal]
|
|
version = "0.3"
|
|
|
|
[features]
|
|
std = ["polyval/std"]
|