File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,5 @@ pub mod gcm;
77#[ cfg( feature = "ccm" ) ]
88pub mod ccm;
99
10- pub ( crate ) mod common;
10+ #[ cfg( any( feature = "aes-gcm" , feature = "aes-ccm" ) ) ]
11+ pub ( crate ) mod explicit_nonce;
Original file line number Diff line number Diff line change 1- use super :: common :: Tls12AeadAlgorithmWithExplicitNonce ;
1+ use super :: explicit_nonce :: Tls12AeadAlgorithmWithExplicitNonce ;
22
33pub const AES_128_CCM : & Tls12AeadAlgorithmWithExplicitNonce < crate :: aead:: aes:: Aes128Ccm > =
44 & Tls12AeadAlgorithmWithExplicitNonce :: DEFAULT ;
File renamed without changes.
Original file line number Diff line number Diff line change 11use rustls:: ConnectionTrafficSecrets ;
22use rustls:: crypto:: cipher:: { self , AeadKey , Iv } ;
33
4- use super :: common :: { Extractor , Tls12AeadAlgorithmWithExplicitNonce } ;
4+ use super :: explicit_nonce :: { Extractor , Tls12AeadAlgorithmWithExplicitNonce } ;
55
66pub struct Aes128Extractor ;
77impl Extractor for Aes128Extractor {
You can’t perform that action at this time.
0 commit comments