mirror of
https://github.com/nab138/isideload.git
synced 2026-03-02 14:36:16 +01:00
first commit
This commit is contained in:
28
apple-private-apis/icloud-auth/rustcrypto-srp/Cargo.toml
Normal file
28
apple-private-apis/icloud-auth/rustcrypto-srp/Cargo.toml
Normal file
@@ -0,0 +1,28 @@
|
||||
[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 = "0.14"
|
||||
digest = "0.10"
|
||||
lazy_static = "1.2"
|
||||
subtle = "2.4"
|
||||
base64 = "0.21.0"
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.3"
|
||||
num-traits = "0.2"
|
||||
rand = "0.8"
|
||||
sha1 = "0.10.6"
|
||||
sha2 = "0.10.8"
|
||||
Reference in New Issue
Block a user