Skip to content

Commit b22eabf

Browse files
remove unnecessary mod redirection
1 parent a74fa6d commit b22eabf

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/kx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ pub mod nist;
2020
pub mod x25519;
2121

2222
#[cfg(feature = "kx-x448")]
23-
pub mod x448;
23+
pub mod x448;

src/tls12/aead/ccm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use alloc::boxed::Box;
33

44
use crate::aead::ccm::{Aes128Ccm, Aes128Ccm8, Aes256Ccm, Aes256Ccm8};
55
use ::aead::{AeadCore, AeadInPlace};
6-
use crypto_common::typenum::Unsigned;
76
use crypto_common::{KeyInit, KeySizeUser};
87
use paste::paste;
98
use rustls::crypto::cipher::{
@@ -12,6 +11,7 @@ use rustls::crypto::cipher::{
1211
PrefixedPayload, Tls12AeadAlgorithm,
1312
};
1413
use rustls::ConnectionTrafficSecrets;
14+
use typenum::Unsigned;
1515

1616
const EXPLICIT_NONCE_LEN: usize = 8;
1717

src/tls12/aead/gcm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use alloc::boxed::Box;
33

44
use crate::aead::gcm::{Aes128Gcm, Aes256Gcm};
55
use ::aead::{AeadCore, AeadInPlace};
6-
use crypto_common::typenum::Unsigned;
76
use crypto_common::{KeyInit, KeySizeUser};
87
use paste::paste;
98
use rustls::crypto::cipher::{
@@ -12,6 +11,7 @@ use rustls::crypto::cipher::{
1211
PrefixedPayload, Tls12AeadAlgorithm,
1312
};
1413
use rustls::ConnectionTrafficSecrets;
14+
use typenum::Unsigned;
1515

1616
const EXPLICIT_NONCE_LEN: usize = 8;
1717
const OVERHEAD: usize = EXPLICIT_NONCE_LEN + 16;

0 commit comments

Comments
 (0)