aboutsummaryrefslogtreecommitdiff
path: root/srp/Cargo.toml
blob: 53c6eea7b0c92c7375f31d25a1f8c75b2619f5c3 (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
[package]
name = "srp"
version = "0.2.5"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
description = "Secure Remote Password (SRP) protocol implementation"
documentation = "https://docs.rs/srp"
repository = "https://github.com/RustCrypto/PAKE"
keywords = ["crypto", "pake", "authentication"]
categories = ["cryptography", "authentication"]

[dependencies]
num = "0.1"
generic-array = "0.8"
digest = "0.6"
lazy_static = "0.2"

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

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