File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,4 +20,4 @@ pub mod nist;
20
20
pub mod x25519;
21
21
22
22
#[ cfg( feature = "kx-x448" ) ]
23
- pub mod x448;
23
+ pub mod x448;
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ use alloc::boxed::Box;
3
3
4
4
use crate :: aead:: ccm:: { Aes128Ccm , Aes128Ccm8 , Aes256Ccm , Aes256Ccm8 } ;
5
5
use :: aead:: { AeadCore , AeadInPlace } ;
6
- use crypto_common:: typenum:: Unsigned ;
7
6
use crypto_common:: { KeyInit , KeySizeUser } ;
8
7
use paste:: paste;
9
8
use rustls:: crypto:: cipher:: {
@@ -12,6 +11,7 @@ use rustls::crypto::cipher::{
12
11
PrefixedPayload , Tls12AeadAlgorithm ,
13
12
} ;
14
13
use rustls:: ConnectionTrafficSecrets ;
14
+ use typenum:: Unsigned ;
15
15
16
16
const EXPLICIT_NONCE_LEN : usize = 8 ;
17
17
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ use alloc::boxed::Box;
3
3
4
4
use crate :: aead:: gcm:: { Aes128Gcm , Aes256Gcm } ;
5
5
use :: aead:: { AeadCore , AeadInPlace } ;
6
- use crypto_common:: typenum:: Unsigned ;
7
6
use crypto_common:: { KeyInit , KeySizeUser } ;
8
7
use paste:: paste;
9
8
use rustls:: crypto:: cipher:: {
@@ -12,6 +11,7 @@ use rustls::crypto::cipher::{
12
11
PrefixedPayload , Tls12AeadAlgorithm ,
13
12
} ;
14
13
use rustls:: ConnectionTrafficSecrets ;
14
+ use typenum:: Unsigned ;
15
15
16
16
const EXPLICIT_NONCE_LEN : usize = 8 ;
17
17
const OVERHEAD : usize = EXPLICIT_NONCE_LEN + 16 ;
You can’t perform that action at this time.
0 commit comments