[package]
edition = "2024"
rust-version = "1.88"
name = "cthash"
version = "0.9.0"
authors = ["Roman Proskuryakov <r.proskuryakoff@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
const fn implementation of hash functions including
MD4, MD5, SHA-1, SHA-2, SHA-3, Keccak"""
readme = "README.md"
keywords = [
"crypto",
"hash",
"digest",
]
categories = [
"cryptography",
"no-std",
"algorithms",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kpp/cthash"
[lib]
name = "cthash"
path = "src/lib.rs"
[[example]]
name = "all"
path = "examples/all.rs"
[[test]]
name = "all"
path = "tests/all.rs"
[dev-dependencies.const-hex]
version = "1"
[dev-dependencies.md-5]
version = "0.10"
[dev-dependencies.md4]
version = "0.10"
[dev-dependencies.sha1]
version = "0.10"
[dev-dependencies.sha2]
version = "0.10"
[dev-dependencies.sha3]
version = "0.10"