From 406abacd2c71d8822b9e0fe6ea410c9a716b94cf Mon Sep 17 00:00:00 2001 From: Chris Hennick Date: Sun, 23 Apr 2023 16:03:21 -0700 Subject: [PATCH] Fix formatting --- src/aes_ctr.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/aes_ctr.rs b/src/aes_ctr.rs index 1c252584..bf5ca9e5 100644 --- a/src/aes_ctr.rs +++ b/src/aes_ctr.rs @@ -5,11 +5,11 @@ //! See [AesCtrZipKeyStream](./struct.AesCtrZipKeyStream.html) for more information. use aes::cipher; -use aes::cipher::{BlockCipher, BlockEncrypt}; use aes::cipher::generic_array::GenericArray; +use aes::cipher::{BlockCipher, BlockEncrypt}; use byteorder::WriteBytesExt; -use std::{any, fmt}; use cipher::KeyInit; +use std::{any, fmt}; /// Internal block size of an AES cipher. const AES_BLOCK_SIZE: usize = 16; @@ -152,7 +152,6 @@ fn xor(dest: &mut [u8], src: &[u8]) { #[cfg(test)] mod tests { use super::{Aes128, Aes192, Aes256, AesCipher, AesCtrZipKeyStream, AesKind}; - use aes::{BlockEncrypt, NewBlockCipher}; use aes::cipher::{BlockCipher, BlockEncrypt}; /// Checks whether `crypt_in_place` produces the correct plaintext after one use and yields the