2018-07-17 20:16:31 +02:00
|
|
|
[package]
|
|
|
|
name = "rsa"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
|
2018-07-24 01:01:44 +02:00
|
|
|
description = "RSA implementation in Rust"
|
2018-07-17 21:16:31 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
homepage = "https://github.com/dignifiedquire/rust-rsa"
|
|
|
|
repository = "https://github.com/dignifiedquire/rust-rsa"
|
|
|
|
|
|
|
|
keywords = ["rsa", "encryption", "security", "public key crypto"]
|
2018-07-17 20:16:31 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-11-24 12:06:43 +01:00
|
|
|
num-bigint-dig = { version = "0.2", features = ["rand", "i128", "u64_digit"] }
|
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 = "prime"
|
|
|
|
|
|
|
|
[[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]
|
2018-07-24 15:09:03 +02:00
|
|
|
# debug = true
|