File tree Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Expand file tree Collapse file tree 8 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ members = [
2727opt-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" }
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff line change 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);
You can’t perform that action at this time.
0 commit comments