ghash 0.3.1

Universal hash over GF(2^128) useful for constructing a Message Authentication Code (MAC), as in the AES-GCM authenticated encryption cipher.
Documentation
[package]
name = "ghash"
version = "0.3.1"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
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"
repository = "https://github.com/RustCrypto/universal-hashes"
readme = "README.md"
keywords = ["aes-gcm", "crypto", "universal-hashing"]
categories = ["cryptography", "no-std"]
edition = "2018"

[dependencies]
opaque-debug = "0.3"
polyval = { version = "0.4.4", features = ["mulx"], path = "../polyval" }
zeroize = { version = "1", optional = true, default-features = false }

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

[features]
std = ["polyval/std"]