-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (42 loc) · 1.35 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
[package]
name = "crypto-glue"
description = "A facade over the RustCrypto ecosystem"
version = "0.1.0"
edition = "2021"
license = "MPL-2.0"
homepage = "https://github.com/kanidm/crypto-glue/"
repository = "https://github.com/kanidm/crypto-glue/"
authors = ["William Brown <[email protected]>"]
[features]
default = [ "alloc" ]
alloc = [ "argon2/alloc" ]
[dependencies]
aes = "0.8.1"
aes-gcm = "0.10.3"
aes-kw = "0.2.1"
argon2 = { version = "0.5.2" }
cbc = "0.1.2"
cipher = { version = "0.4", features = ["block-padding", "alloc"] }
crypto-common = { version = "0.1", features = ["rand_core"] }
# dhkem = "0.0.1-alpha"
ecdsa = "0.16"
elliptic-curve = { version = "0.13", features = ["arithmetic"] }
hex = "0.4.3"
hkdf = "0.12.4"
hmac = "0.12"
p256 = { version = "0.13", features = ["ecdh", "pem"] }
p384 = "0.13"
rand = "0.8.4"
rsa = { version = "0.9.7", features = ["sha2", "pem"] }
sec1 = "0.7.3"
x509-cert = { version = "0.2", features = ["builder", "hazmat"] }
const-oid = "0.9"
sha2 = "0.10"
tracing = "^0.1.37"
generic-array = { version = "0.14.7", features = ["serde", "zeroize"] }
zeroize = { version = "1.6.0", features = ["serde"] }
rustls = { version = "0.23", default-features = false, features = ["custom-provider", "std"] }
uuid = { version = "1", features = ["v4"] }
# [dev-dependencies]
rustls-rustcrypto = "0.0.2-alpha"
tracing-subscriber = "^0.3.17"