-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
62 lines (54 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "rsacracker"
version = "0.6.10"
edition = "2021"
authors = ["skyf0l <skyf0lmails@proton.me>"]
description = "Powerful RSA cracker for CTFs. Supports RSA, X509, OPENSSH in PEM and DER formats."
repository = "https://github.com/skyf0l/RsaCracker"
license = "MIT OR Apache-2.0"
categories = ["cryptography", "mathematics"]
keywords = ["rsa", "cracker", "ctf", "crypto", "cryptography"]
include = [
"/src/**/*",
"/Cargo.toml",
"/LICENSE*",
"/README.md",
]
readme = "README.md"
[workspace]
members = [
"tools/gen_keys",
]
[features]
default = ["parallel"]
parallel = ["tokio", "mpsc", "num_cpus"]
[profile.dev]
opt-level = 1
[profile.test]
opt-level = 2
[profile.release]
codegen-units = 1
lto = true
[dependencies]
thiserror = "1.0"
lazy_static = "1.5"
clap = { version = "4.5", features = ["derive", "env"] }
main_error = "0.1"
primal = "0.3"
ecm = { version = "1.0", features = ["progress-bar"] }
openssl = "0.10"
base-x = "0.2"
display_bytes = "0.2"
ssh-key = { version = "0.6", features = ["encryption"] }
tokio = { version = "1.40", features = ["rt", "rt-multi-thread"], optional = true }
mpsc = { version = "0.2", optional = true }
num_cpus = { version = "1.15", optional = true }
update-informer = "1.1"
indicatif = "0.17"
itertools = "0.13"
discrete-logarithm = "1.0"
base64 = "0.22"
[dependencies.rug]
version = "1.26"
default-features = false
features = ["integer", "rand", "std"]