Skip to content

Commit 896142c

Browse files
authored
pkcs5: 0.8.0-rc.2 (#1552)
1 parent d41859f commit 896142c

File tree

3 files changed

+12
-15
lines changed

3 files changed

+12
-15
lines changed

Cargo.lock

Lines changed: 9 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,3 @@ x509-ocsp = { path = "./x509-ocsp" }
6161

6262
# Temp patches to external crates
6363
rsa = { git = "https://github.com/RustCrypto/RSA" }
64-
65-
# https://github.com/RustCrypto/AEADs/pull/632
66-
aes-gcm = { git = "https://github.com/RustCrypto/AEADs.git" }
67-
# https://github.com/RustCrypto/stream-ciphers/pull/368
68-
salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }

pkcs5/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pkcs5"
3-
version = "0.8.0-rc.1"
3+
version = "0.8.0-rc.2"
44
description = """
55
Pure Rust implementation of Public-Key Cryptography Standards (PKCS) #5:
66
Password-Based Cryptography Specification Version 2.1 (RFC 8018)
@@ -22,11 +22,11 @@ spki = { version = "0.8.0-rc.0" }
2222
# optional dependencies
2323
cbc = { version = "=0.2.0-pre.2", optional = true }
2424
aes = { version = "=0.9.0-pre.2", optional = true, default-features = false }
25-
aes-gcm = { version = "=0.11.0-pre.1", optional = true, default-features = false, features = ["aes"] }
25+
aes-gcm = { version = "=0.11.0-pre.2", optional = true, default-features = false, features = ["aes"] }
2626
des = { version = "=0.9.0-pre.2", optional = true, default-features = false }
2727
pbkdf2 = { version = "=0.13.0-pre.1", optional = true, default-features = false, features = ["hmac"] }
2828
rand_core = { version = "0.6.4", optional = true, default-features = false }
29-
scrypt = { version = "=0.12.0-pre.1", optional = true, default-features = false }
29+
scrypt = { version = "=0.12.0-pre.2", optional = true, default-features = false }
3030
sha1 = { version = "=0.11.0-pre.4", optional = true, default-features = false }
3131
sha2 = { version = "=0.11.0-pre.4", optional = true, default-features = false }
3232

0 commit comments

Comments
 (0)