Skip to content

Commit 9438633

Browse files
authored
Bump cipher to v0.5.0-pre.3 (#343)
1 parent 521d874 commit 9438633

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

Cargo.lock

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

chacha20/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ categories = ["cryptography", "no-std"]
2020

2121
[dependencies]
2222
cfg-if = "1"
23-
cipher = "=0.5.0-pre.2"
23+
cipher = "=0.5.0-pre.3"
2424

2525
[target.'cfg(any(target_arch = "x86_64", target_arch = "x86"))'.dependencies]
2626
cpufeatures = "0.2"
2727

2828
[dev-dependencies]
29-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
29+
cipher = { version = "=0.5.0-pre.3", features = ["dev"] }
3030
hex-literal = "0.4"
3131

3232
[features]

hc-256/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "stream-cipher", "trait"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.3"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.3", features = ["dev"] }
2020
hex-literal = "0.4"
2121

2222
[features]

rabbit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ keywords = ["crypto", "rabbit", "stream-cipher", "trait"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.3"
1717

1818
[dev-dependencies]
19-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
19+
cipher = { version = "=0.5.0-pre.3", features = ["dev"] }
2020
hex-literal = "0.4"
2121

2222
[features]

rc4/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ keywords = ["arc4", "arcfour", "crypto", "stream-cipher", "trait"]
1313
categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
16-
cipher = "=0.5.0-pre.2"
16+
cipher = "=0.5.0-pre.3"
1717

1818
[dev-dependencies]
1919
hex-literal = "0.4"

rc4/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
//! use rc4::{consts::*, KeyInit, StreamCipher};
1616
//! use rc4::{Key, Rc4};
1717
//!
18-
//! let mut rc4 = Rc4::new(b"Key".into());
18+
//! let mut rc4 = Rc4::<U3>::new(b"Key".into());
1919
//! let mut data = b"Plaintext".to_vec();
2020
//! rc4.apply_keystream(&mut data);
2121
//! assert_eq!(data, [0xBB, 0xF3, 0x16, 0xE8, 0xD9, 0x40, 0xAF, 0x0A, 0xD3]);
2222
//!
23-
//! let mut rc4 = Rc4::new(b"Wiki".into());
23+
//! let mut rc4 = Rc4::<U4>::new(b"Wiki".into());
2424
//! let mut data = b"pedia".to_vec();
2525
//! rc4.apply_keystream(&mut data);
2626
//! assert_eq!(data, [0x10, 0x21, 0xBF, 0x04, 0x20]);

salsa20/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ categories = ["cryptography", "no-std"]
1414

1515
[dependencies]
1616
cfg-if = "1"
17-
cipher = "=0.5.0-pre.2"
17+
cipher = "=0.5.0-pre.3"
1818

1919
[dev-dependencies]
20-
cipher = { version = "=0.5.0-pre.2", features = ["dev"] }
20+
cipher = { version = "=0.5.0-pre.3", features = ["dev"] }
2121
hex-literal = "0.4"
2222

2323
[features]

0 commit comments

Comments
 (0)