Skip to content

Commit 27160c1

Browse files
[cast5] remove glob imports (#148)
1 parent ce28449 commit 27160c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cast5/src/cast5.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use block_cipher::generic_array::GenericArray;
44
use block_cipher::{BlockCipher, InvalidKeyLength, NewBlockCipher};
55
use byteorder::{BigEndian, ByteOrder};
66

7-
use crate::consts::*;
7+
use crate::consts::{S1, S2, S3, S4};
88
use crate::schedule::key_schedule;
99

1010
type Block = GenericArray<u8, U8>;

cast5/src/schedule.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::consts::*;
1+
use crate::consts::{S5, S6, S7, S8};
22

33
macro_rules! get_i {
44
($x:expr, $i:expr) => {

0 commit comments

Comments
 (0)