2019-02-20 21:06:30 +01:00
|
|
|
[package]
|
2018-07-17 20:16:31 +02:00
|
|
|
name = "rsa"
|
2020-06-11 14:13:09 +02:00
|
|
|
version = "0.3.0"
|
2018-12-03 10:47:09 +00:00
|
|
|
authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"]
|
2019-03-18 09:34:29 -07:00
|
|
|
edition = "2018"
|
2018-12-03 10:47:09 +00:00
|
|
|
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"]
|
2019-03-19 08:07:14 -07:00
|
|
|
readme = "README.md"
|
2018-07-17 20:16:31 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2019-12-11 01:15:49 +01:00
|
|
|
num-bigint = { version = "0.6", features = ["rand", "i128", "u64_digit", "prime", "zeroize"], 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"
|
2019-03-25 08:40:55 -07:00
|
|
|
lazy_static = "1.3.0"
|
2019-12-11 01:15:49 +01:00
|
|
|
rand = "0.7.0"
|
2019-03-25 08:40:55 -07:00
|
|
|
byteorder = "1.3.1"
|
2020-02-25 20:02:18 -05:00
|
|
|
thiserror = "1.0.11"
|
2019-02-20 18:50:46 +01:00
|
|
|
subtle = "2.0.0"
|
2020-02-13 17:50:44 -05:00
|
|
|
simple_asn1 = "0.4"
|
2020-06-11 13:24:03 +02:00
|
|
|
pem = { version = "0.8", optional = true }
|
|
|
|
digest = { version = "0.9.0", features = ["std"] }
|
|
|
|
sha2 = "0.9.0"
|
2019-03-26 14:53:53 +01:00
|
|
|
|
|
|
|
[dependencies.zeroize]
|
2019-12-11 01:15:49 +01:00
|
|
|
version = "1.1.0"
|
2019-10-13 16:31:11 +02:00
|
|
|
features = ["alloc", "zeroize_derive"]
|
2018-07-24 01:01:44 +02:00
|
|
|
|
2020-02-25 20:33:20 -05:00
|
|
|
[dependencies.serde_crate]
|
|
|
|
package = "serde"
|
2019-02-20 20:28:02 +01:00
|
|
|
optional = true
|
2019-03-25 08:40:55 -07:00
|
|
|
version = "1.0.89"
|
2019-02-20 20:28:02 +01:00
|
|
|
default-features = false
|
|
|
|
features = ["std", "derive"]
|
|
|
|
|
2018-07-24 01:01:44 +02:00
|
|
|
[dev-dependencies]
|
2020-06-11 13:24:03 +02:00
|
|
|
base64 = "0.12.0"
|
2019-10-13 16:31:11 +02:00
|
|
|
hex = "0.4.0"
|
2019-03-25 08:40:55 -07:00
|
|
|
serde_test = "1.0.89"
|
2019-12-11 01:15:49 +01:00
|
|
|
rand_xorshift = "0.2.0"
|
2020-06-11 13:24:03 +02:00
|
|
|
pem = "0.8"
|
|
|
|
sha-1 = "0.9.0"
|
|
|
|
sha3 = "0.9.0"
|
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
|
2019-02-20 18:50:46 +01:00
|
|
|
|
|
|
|
[features]
|
2020-02-13 17:50:44 -05:00
|
|
|
default = ["pem"]
|
2019-10-13 16:31:11 +02:00
|
|
|
nightly = ["subtle/nightly", "num-bigint/nightly"]
|
2020-02-25 20:33:20 -05:00
|
|
|
serde = ["num-bigint/serde", "serde_crate"]
|
|
|
|
serde1 = ["serde"] # deprecated
|
2019-03-26 14:53:53 +01:00
|
|
|
expose-internals = []
|