blob: 15994476363b06913724180dd4ff1b1f67a3b94b (
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
|
[package]
name = "srp"
version = "0.4.3"
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"
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" }
|