Files
isideload/apple-private-apis/icloud-auth/rustcrypto-srp/Cargo.toml
2025-08-08 22:16:09 -04:00

29 lines
641 B
TOML

[package]
name = "srp"
version = "0.6.0"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
description = "Secure Remote Password (SRP) protocol implementation"
documentation = "https://docs.rs/srp"
repository = "https://github.com/RustCrypto/PAKEs"
keywords = ["crypto", "pake", "authentication"]
categories = ["cryptography", "authentication"]
readme = "README.md"
edition = "2021"
rust-version = "1.56"
[dependencies]
num-bigint = "0.4"
generic-array = "1"
digest = "0.10"
lazy_static = "1.2"
subtle = "2.4"
base64 = "0.22"
[dev-dependencies]
hex-literal = "1"
num-traits = "0.2"
rand = "0.9"
sha1 = "0.10"
sha2 = "0.10"