-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (41 loc) · 857 Bytes
/
Cargo.toml
File metadata and controls
50 lines (41 loc) · 857 Bytes
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
[package]
name = "cryptopals"
version = "0.1.0"
authors = ["Tanel Liiv"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
lto = true
#[[bin]]
#name = "base64_encode"
#path = "src/base64_encode/main.rs"
[dependencies]
aes = "0.3.2"
rand = "0.7.2"
# DH
num-bigint = { version = "0.3", features = ["rand"] }
# SHA1
byteorder = "1.3.4"
# SRP
sha2 = "0.9.1"
# RSA primes
openssl = "0.10.30"
# compression sidechannel
deflate = "0.8.6"
# md4 collisions
md4 = "0.9.0"
# Following all MD4
[dependencies.block-buffer]
version = "0.9"
[dependencies.digest]
version = "0.9"
[dependencies.opaque-debug]
version = "0.3"
[dev-dependencies.digest]
features = ["dev"]
version = "0.9"
[dev-dependencies.hex-literal]
version = "0.2"
[features]
default = ["std"]
std = ["digest/std"]