aboutsummaryrefslogtreecommitdiff
path: root/srp/Cargo.toml
blob: 3ade1b07a3abdfe3930751ed9f606fbe2f227485 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "srp"
version = "0.4.1"
edition = "2018"
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"]

[dependencies]
num-bigint = "0.2"
num-traits = "0.2"
generic-array = "0.12"
digest = "0.8"
lazy_static = "1.2"

[dev-dependencies]
rand = "0.6"
sha2 = "0.8"
sha-1 = "0.8"

[badges]
travis-ci = { repository = "RustCrypto/PAKEs" }