@@ -230,7 +230,7 @@ impl CBC {
230230 }
231231}
232232#[ cfg( aes_cbc) ]
233- impl Zeroize for CBC {
233+ impl CBC {
234234 fn zeroize ( & mut self ) {
235235 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
236236 }
@@ -422,7 +422,7 @@ impl CCM {
422422 }
423423}
424424#[ cfg( aes_ccm) ]
425- impl Zeroize for CCM {
425+ impl CCM {
426426 fn zeroize ( & mut self ) {
427427 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
428428 }
@@ -897,7 +897,7 @@ impl CFB {
897897 }
898898}
899899#[ cfg( aes_cfb) ]
900- impl Zeroize for CFB {
900+ impl CFB {
901901 fn zeroize ( & mut self ) {
902902 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
903903 }
@@ -1072,7 +1072,7 @@ impl CTR {
10721072 }
10731073}
10741074#[ cfg( aes_ctr) ]
1075- impl Zeroize for CTR {
1075+ impl CTR {
10761076 fn zeroize ( & mut self ) {
10771077 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
10781078 }
@@ -1379,7 +1379,7 @@ impl ECB {
13791379 }
13801380}
13811381#[ cfg( aes_ecb) ]
1382- impl Zeroize for ECB {
1382+ impl ECB {
13831383 fn zeroize ( & mut self ) {
13841384 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
13851385 }
@@ -1577,7 +1577,7 @@ impl GCM {
15771577 }
15781578}
15791579#[ cfg( aes_gcm) ]
1580- impl Zeroize for GCM {
1580+ impl GCM {
15811581 fn zeroize ( & mut self ) {
15821582 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
15831583 }
@@ -2037,7 +2037,7 @@ impl GCMStream {
20372037 }
20382038}
20392039#[ cfg( aes_gcm_stream) ]
2040- impl Zeroize for GCMStream {
2040+ impl GCMStream {
20412041 fn zeroize ( & mut self ) {
20422042 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
20432043 }
@@ -2221,7 +2221,7 @@ impl OFB {
22212221 }
22222222}
22232223#[ cfg( aes_ofb) ]
2224- impl Zeroize for OFB {
2224+ impl OFB {
22252225 fn zeroize ( & mut self ) {
22262226 unsafe { crate :: zeroize_raw ( & mut self . ws_aes ) ; }
22272227 }
@@ -2587,7 +2587,7 @@ impl XTS {
25872587 }
25882588}
25892589#[ cfg( aes_xts) ]
2590- impl Zeroize for XTS {
2590+ impl XTS {
25912591 fn zeroize ( & mut self ) {
25922592 unsafe { crate :: zeroize_raw ( & mut self . ws_xtsaes ) ; }
25932593 }
@@ -2890,7 +2890,7 @@ impl XTSStream {
28902890 }
28912891}
28922892#[ cfg( aes_xts_stream) ]
2893- impl Zeroize for XTSStream {
2893+ impl XTSStream {
28942894 fn zeroize ( & mut self ) {
28952895 unsafe { crate :: zeroize_raw ( & mut self . ws_xtsaes ) ; }
28962896 }
0 commit comments