2018-07-17 20:16:31 +02:00
|
|
|
[package]
|
|
|
|
name = "rsa"
|
2018-12-05 21:19:34 +01:00
|
|
|
version = "0.1.1-alpha.0"
|
2018-12-03 10:47:09 +00:00
|
|
|
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
|
|
|
|
description = "Pure Rust RSA implementation"
|
2018-07-17 21:16:31 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2018-12-03 10:47:09 +00:00
|
|
|
documentation = "https://docs.rs/rsa"
|
|
|
|
repository = "https://github.com/RustCrypto/RSA"
|
2018-11-24 12:07:30 +01:00
|
|
|
keywords = ["rsa", "encryption", "security", "crypto"]
|
2018-12-03 10:47:09 +00:00
|
|
|
categories = ["cryptography"]
|
2018-07-17 20:16:31 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-01-15 21:05:45 +01:00
|
|
|
#num-bigint-dig = { version = "0.2", features = ["rand", "i128", "u64_digit", "prime"] }
|
|
|
|
num-bigint = { git = "https://github.com/dignifiedquire/num-bigint", features = ["rand", "i128", "u64_digit", "prime"], package = "num-bigint-dig" }
|
2018-11-07 14:20:05 +01:00
|
|
|
num-traits = "0.2.6"
|
|
|
|
num-integer = "0.1.39"
|
|
|
|
num-iter = "0.1.37"
|
|
|
|
lazy_static = "1.2.0"
|
|
|
|
rand = "0.5.5"
|
|
|
|
byteorder = "1.2.7"
|
|
|
|
failure = "0.1.3"
|
|
|
|
subtle = "1.0.0"
|
2018-07-24 01:01:44 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2018-11-07 14:20:05 +01:00
|
|
|
base64 = "0.10.0"
|
|
|
|
sha-1 = "0.8.0"
|
|
|
|
sha2 = "0.8.0"
|
|
|
|
hex = "0.3.2"
|
2018-07-24 15:09:03 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "key"
|
|
|
|
|
2018-07-24 01:01:44 +02:00
|
|
|
[profile.release]
|
2018-07-24 15:09:03 +02:00
|
|
|
# debug = true
|
2018-07-24 01:01:44 +02:00
|
|
|
|
|
|
|
[profile.bench]
|
2019-01-15 21:05:45 +01:00
|
|
|
# debug = true
|