Skip to content

Commit 4327878

Browse files
committed
blowfish: scrypt: bump cipher to 0.5.0-pre.4
1 parent fe67dc8 commit 4327878

File tree

6 files changed

+29
-44
lines changed

6 files changed

+29
-44
lines changed

.github/workflows/bcrypt-pbkdf.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ jobs:
3737
- run: cargo build --no-default-features --target ${{ matrix.target }}
3838

3939
minimal-versions:
40+
# disabled until belt-block gets published
41+
if: false
4042
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4143
with:
4244
working-directory: ${{ github.workflow }}

.github/workflows/scrypt.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
- run: cargo build --target ${{ matrix.target }} --no-default-features --features simple
3939

4040
minimal-versions:
41+
# disabled until belt-block gets published
42+
if: false
4143
uses: RustCrypto/actions/.github/workflows/minimal-versions.yml@master
4244
with:
4345
working-directory: ${{ github.workflow }}

Cargo.lock

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

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,11 @@ exclude = ["benches"]
1313

1414
[profile.dev]
1515
opt-level = 2
16+
17+
[patch.crates-io]
18+
# https://github.com/RustCrypto/block-ciphers/pull/413
19+
blowfish = { git = "https://github.com/baloo/block-ciphers.git", branch = "baloo/bump-cipher/0.5.0-pre.4" }
20+
21+
# https://github.com/RustCrypto/stream-ciphers/pull/345
22+
# https://github.com/RustCrypto/stream-ciphers/pull/346
23+
salsa20 = { git = "https://github.com/RustCrypto/stream-ciphers.git" }

bcrypt-pbkdf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2021"
1313
rust-version = "1.72"
1414

1515
[dependencies]
16-
blowfish = { version = "0.9.1", features = ["bcrypt"] }
16+
blowfish = { version = "=0.10.0-pre", features = ["bcrypt"] }
1717
pbkdf2 = { version = "=0.13.0-pre.0", default-features = false, path = "../pbkdf2" }
1818
sha2 = { version = "=0.11.0-pre.3", default-features = false }
1919
zeroize = { version = "1", default-features = false, optional = true }

scrypt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version = "1.72"
1414

1515
[dependencies]
1616
pbkdf2 = { version = "=0.13.0-pre.0", path = "../pbkdf2" }
17-
salsa20 = { version = "0.10.2", default-features = false }
17+
salsa20 = { version = "=0.11.0-pre", default-features = false }
1818
sha2 = { version = "=0.11.0-pre.3", default-features = false }
1919

2020
# optional dependencies

0 commit comments

Comments
 (0)