@@ -18,7 +18,7 @@ const-oid = { version = "0.10.0", default-features = false }
18
18
subtle = { version = " 2.6.1" , default-features = false }
19
19
digest = { version = " =0.11.0-pre.10" , default-features = false , features = [" alloc" , " oid" ] }
20
20
pkcs1 = { version = " 0.8.0-rc.1" , default-features = false , features = [" alloc" , " pkcs8" ] }
21
- pkcs8 = { version = " 0.11.0-rc.2 " , default-features = false , features = [" alloc" ] }
21
+ pkcs8 = { version = " 0.11.0-rc.3 " , default-features = false , features = [" alloc" ] }
22
22
signature = { version = " =3.0.0-pre" , default-features = false , features = [" alloc" , " digest" , " rand_core" ] }
23
23
spki = { version = " 0.8.0-rc.1" , default-features = false , features = [" alloc" ] }
24
24
zeroize = { version = " 1.5" , features = [" alloc" ] }
@@ -57,7 +57,7 @@ os_rng = ["rand_core/os_rng", "crypto-bigint/rand_core"]
57
57
serde = [" dep:serde" , " dep:serdect" , " crypto-bigint/serde" ]
58
58
pem = [" pkcs1/pem" , " pkcs8/pem" ]
59
59
pkcs5 = [" pkcs8/encryption" ]
60
- std = [" digest/std " , " pkcs1/std" , " pkcs8/std" , " rand_core/std" , " crypto-bigint/rand" ]
60
+ std = [" pkcs1/std" , " pkcs8/std" , " rand_core/std" , " crypto-bigint/rand" ]
61
61
62
62
63
63
[package .metadata .docs .rs ]
@@ -74,17 +74,33 @@ debug = true
74
74
# https://github.com/entropyxyz/crypto-primes/pull/74
75
75
crypto-primes = { git = " https://github.com/entropyxyz/crypto-primes.git" }
76
76
77
- signature = { git = " https://github.com/RustCrypto/traits.git" }
77
+ aead = { git = " https://github.com/RustCrypto/traits.git" }
78
+ crypto-common = { git = " https://github.com/RustCrypto/traits.git" }
79
+ digest = { git = " https://github.com/RustCrypto/traits.git" }
80
+ signature = { git = " https://github.com/RustCrypto/traits.git" }
78
81
79
82
der = { git = " https://github.com/RustCrypto/formats.git" }
80
83
pkcs1 = { git = " https://github.com/RustCrypto/formats.git" }
84
+ # https://github.com/RustCrypto/formats/pull/1844
81
85
pkcs5 = { git = " https://github.com/RustCrypto/formats.git" }
82
86
pkcs8 = { git = " https://github.com/RustCrypto/formats.git" }
83
87
88
+ sha1 = { git = " https://github.com/RustCrypto/hashes.git" }
89
+ sha2 = { git = " https://github.com/RustCrypto/hashes.git" }
90
+ sha3 = { git = " https://github.com/RustCrypto/hashes.git" }
91
+
84
92
# https://github.com/RustCrypto/password-hashes/pull/577
85
93
# https://github.com/RustCrypto/password-hashes/pull/578
86
- pbkdf2 = { git = " https://github.com/baloo/password-hashes.git" , branch = " baloo/hmac-0.13.0-pre.5" }
87
- scrypt = { git = " https://github.com/baloo/password-hashes.git" , branch = " baloo/hmac-0.13.0-pre.5" }
94
+ # https://github.com/RustCrypto/password-hashes/pull/592
95
+ pbkdf2 = { git = " https://github.com/RustCrypto/password-hashes.git" }
96
+ scrypt = { git = " https://github.com/RustCrypto/password-hashes.git" }
97
+
98
+ hmac = { git = " https://github.com/RustCrypto/MACs.git" }
88
99
89
100
# https://github.com/RustCrypto/crypto-bigint/pull/824
90
101
crypto-bigint = { git = " https://github.com/RustCrypto/crypto-bigint.git" }
102
+
103
+ cbc = { git = " https://github.com/RustCrypto/block-modes.git" }
104
+ ctr = { git = " https://github.com/RustCrypto/block-modes.git" }
105
+ aes-gcm = { git = " https://github.com/RustCrypto/AEADs.git" }
106
+ salsa20 = { git = " https://github.com/RustCrypto/stream-ciphers.git" }
0 commit comments