Crates.io | srp |
lib.rs | srp |
version | 0.6.0 |
source | src |
created_at | 2017-08-13 01:19:18.971774 |
updated_at | 2022-01-22 21:17:53.797251 |
description | Secure Remote Password (SRP) protocol implementation |
homepage | |
repository | https://github.com/RustCrypto/PAKEs |
max_upload_size | |
id | 27337 |
size | 47,938 |
Pure Rust implementation of the Secure Remote Password password-authenticated key-exchange algorithm.
This implementation is generic over hash functions using the Digest
trait,
so you will need to choose a hash function, e.g. Sha256
from sha2
crate.
Additionally this crate allows to use a specialized password hashing algorithm for private key computation instead of method described in the SRP literature.
Compatibility with other implementations has not yet been tested.
This crate has never received an independent third party audit for security and correctness.
USE AT YOUR OWN RISK!
Rust 1.56 or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.
Licensed under either of:
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.