Skip to content

Commit e19d160

Browse files
committed
Add reference to RustCrypto/traits#1916; remove .git
1 parent 2ab806c commit e19d160

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ members = [
2727
opt-level = 2
2828

2929
[patch.crates-io]
30-
block-buffer = { git = "https://github.com/RustCrypto/utils.git" }
31-
cipher = { git = "https://github.com/RustCrypto/traits.git" }
32-
inout = { git = "https://github.com/RustCrypto/utils.git" }
30+
block-buffer = { git = "https://github.com/RustCrypto/utils" }
31+
cipher = { git = "https://github.com/RustCrypto/traits" }
32+
inout = { git = "https://github.com/RustCrypto/utils" }

aes/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Test vectors are from NESSIE:
22
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/
33
4-
// TODO(tarcieri): update tests to new format
4+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
55
//cipher::block_cipher_test!(aes128_test, "aes128", aes::Aes128);
66
//cipher::block_cipher_test!(aes192_test, "aes192", aes::Aes192);
77
//cipher::block_cipher_test!(aes256_test, "aes256", aes::Aes256);

blowfish/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// TODO(tarcieri): update tests to new format
1+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
22
//cipher::block_cipher_test!(blowfish_test, "blowfish", blowfish::Blowfish);
33
// Tests for BlowfishLE were randomly generated using implementation in this crate
44
//cipher::block_cipher_test!(blowfish_le_test, "blowfish_le", blowfish::BlowfishLE);

camellia/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Test vectors are from NESSIE:
22
//! <https://www.cosic.esat.kuleuven.be/nessie/testvectors/>
33
4-
// TODO(tarcieri): update tests to new format
4+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
55
//cipher::block_cipher_test!(camellia128_test, "camellia128", camellia::Camellia128);
66
//cipher::block_cipher_test!(camellia192_test, "camellia192", camellia::Camellia192);
77
//cipher::block_cipher_test!(camellia256_test, "camellia256", camellia::Camellia256);

cast5/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,5 @@ fn full_maintenance_test() {
8080

8181
// Test vectors from NESSIE:
8282
// https://www.cosic.esat.kuleuven.be/nessie/testvectors/bc/cast-128/Cast-128-128-64.verified.test-vectors
83-
// TODO(tarcieri): update tests to new format
83+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
8484
//cipher::block_cipher_test!(cast5_nessie, "cast5", cast5::Cast5);

des/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Test vectors are from NESSIE:
22
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/
33
4-
// TODO(tarcieri): update tests to new format
4+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
55
//cipher::block_cipher_test!(des_test, "des", des::Des);
66
//cipher::block_cipher_test!(tdes_ede3_test, "tdes", des::TdesEde3);
77
//cipher::block_cipher_test!(tdes_ede2_test, "tdes2", des::TdesEde2);

idea/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Test vectors from:
22
//! https://www.cosic.esat.kuleuven.be/nessie/testvectors/bc/idea/Idea-128-64.verified.test-vectors
33
4-
// TODO(tarcieri): update tests to new format
4+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
55
//cipher::block_cipher_test!(idea_test, "idea", idea::Idea);

serpent/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Test vectors from Nessie:
22
//! http://www.cs.technion.ac.il/~biham/Reports/Serpent/Serpent-128-128.verified.test-vectors
33
4-
// TODO(tarcieri): update tests to new format
4+
// TODO(tarcieri): update tests to support RustCrypto/traits#1916
55
//cipher::block_cipher_test!(serpent128_test, "serpent128", serpent::Serpent);
66
//cipher::block_cipher_test!(serpent192_test, "serpent192", serpent::Serpent);
77
//cipher::block_cipher_test!(serpent256_test, "serpent256", serpent::Serpent);

0 commit comments

Comments
 (0)