hpke-core 0.0.1

RFC 9180 Hybrid Public Key Encryption (HPKE) implementation in Rust.
Documentation
[dependencies.const-hex]
default-features = false
features = ["alloc"]
optional = true
version = "1.16"

[dependencies.hpke-crypto]
default-features = false
version = "=0.0.1"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"

[dependencies.serde_json]
features = ["preserve_order"]
optional = true
version = "1.0"

[dependencies.smallvec]
version = "=2.0.0-alpha.12"

[dependencies.zeroize]
version = "1.8"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8.1"

[dev-dependencies.rand]
version = "0.9"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.test-case]
version = "3.3"

[features]
default = []
hazmat = ["dep:const-hex"]
serde = ["dep:serde", "hpke-crypto/serde"]
std = ["serde?/std", "hpke-crypto/std"]
test-vectors = ["std", "serde", "dep:const-hex", "dep:serde_json"]

[lib]
name = "hpke_core"
path = "src/lib.rs"

[package]
authors = ["Hantong Chen <cxwdyx620@gmail.com>", "Franziskus Kiefer <franziskuskiefer@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["cryptography"]
description = """
RFC 9180 Hybrid Public Key Encryption (HPKE) implementation in Rust.
"""
edition = "2024"
keywords = ["HPKE"]
license = "MPL-2.0"
name = "hpke-core"
readme = "README.md"
repository = "https://github.com/hanyu-dev/hpke"
rust-version = "1.91.0"
version = "0.0.1"

[[test]]
name = "smoking"
path = "tests/smoking.rs"