[package]
edition = "2021"
rust-version = "1.79"
name = "pakery-spake2plus"
version = "0.1.0"
authors = ["pakery contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SPAKE2+ augmented PAKE protocol (RFC 9383)"
documentation = "https://docs.rs/pakery-spake2plus"
readme = "README.md"
keywords = [
"pake",
"spake2plus",
"password",
"key-exchange",
"no-std",
]
categories = [
"cryptography",
"no-std::no-alloc",
"authentication",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/djx-y-z/pakery"
[features]
default = ["std"]
getrandom = ["rand_core/getrandom"]
std = ["pakery-core/std"]
test-utils = []
[lib]
name = "pakery_spake2plus"
path = "src/lib.rs"
[dependencies.pakery-core]
version = "0.1.0"
default-features = false
[dependencies.rand_core]
version = "0.6"
[dependencies.subtle]
version = "2.6"
default-features = false
[dependencies.zeroize]
version = "1.8"
features = ["derive"]