Optimize AES code, use less copies

This commit is contained in:
Marc Brinkmann 2020-10-03 17:04:32 +02:00 committed by Lireer
parent a5d1905db6
commit 4afe4d3b2c

View file

@ -1,8 +1,7 @@
use aes::block_cipher::generic_array::GenericArray; use aes::block_cipher::generic_array::GenericArray;
use aes::{BlockCipher, NewBlockCipher}; use aes::{BlockCipher, NewBlockCipher};
use arrayvec::{Array, ArrayVec}; use byteorder::WriteBytesExt;
use std::io::Read; use std::{any, fmt};
use std::{any, fmt, io};
/// Internal block size of an AES cipher. /// Internal block size of an AES cipher.
const AES_BLOCK_SIZE: usize = 16; const AES_BLOCK_SIZE: usize = 16;
@ -20,14 +19,13 @@ pub struct Aes256;
/// An AES cipher kind. /// An AES cipher kind.
pub trait AesKind { pub trait AesKind {
/// Key type. /// Key type.
type Key: Array<Item = u8>; type Key: AsRef<[u8]>;
/// Cipher used to decrypt. /// Cipher used to decrypt.
type Cipher; type Cipher;
} }
impl AesKind for Aes256 { impl AesKind for Aes256 {
type Key = [u8; 32]; type Key = [u8; 32];
type Cipher = aes::Aes256; type Cipher = aes::Aes256;
} }
@ -40,10 +38,15 @@ impl AesKind for Aes256 {
/// ///
/// The stream implements the `Read` trait; encryption or decryption is performed by XOR-ing the /// The stream implements the `Read` trait; encryption or decryption is performed by XOR-ing the
/// bytes from the key stream with the ciphertext/plaintext. /// bytes from the key stream with the ciphertext/plaintext.
struct AesCtrZipKeyStream<C: AesKind> { pub struct AesCtrZipKeyStream<C: AesKind> {
/// Current AES counter.
counter: u128, counter: u128,
/// AES cipher instance.
cipher: C::Cipher, cipher: C::Cipher,
buffer: ArrayVec<C::Key>, /// Stores the currently available keystream bytes.
buffer: [u8; AES_BLOCK_SIZE],
/// Number of bytes already used up from `buffer`.
pos: usize,
} }
impl<C> fmt::Debug for AesCtrZipKeyStream<C> impl<C> fmt::Debug for AesCtrZipKeyStream<C>
@ -65,13 +68,13 @@ where
C: AesKind, C: AesKind,
C::Cipher: NewBlockCipher, C::Cipher: NewBlockCipher,
{ {
#[allow(dead_code)]
/// Creates a new zip variant AES-CTR key stream. /// Creates a new zip variant AES-CTR key stream.
pub fn new(key: &C::Key) -> AesCtrZipKeyStream<C> { pub fn new(key: &C::Key) -> AesCtrZipKeyStream<C> {
AesCtrZipKeyStream { AesCtrZipKeyStream {
counter: 1, counter: 1,
cipher: C::Cipher::new_varkey(key.as_slice()).expect("key should have correct size"), cipher: C::Cipher::new_varkey(key.as_ref()).expect("key should have correct size"),
buffer: ArrayVec::new(), buffer: [0u8; AES_BLOCK_SIZE],
pos: AES_BLOCK_SIZE,
} }
} }
} }
@ -85,21 +88,26 @@ where
#[inline] #[inline]
fn crypt(&mut self, mut target: &mut [u8]) { fn crypt(&mut self, mut target: &mut [u8]) {
while target.len() > 0 { while target.len() > 0 {
if self.buffer.len() == 0 { if self.pos == AES_BLOCK_SIZE {
// Note: AES block size is always 16 bytes, same as u128. // Note: AES block size is always 16 bytes, same as u128.
let mut block = GenericArray::clone_from_slice(&self.counter.to_le_bytes()); self.buffer
.as_mut()
// TODO: Use trait. .write_u128::<byteorder::LittleEndian>(self.counter)
self.cipher.encrypt_block(&mut block); .expect("did not expect u128 le conversion to fail");
self.cipher
.encrypt_block(GenericArray::from_mut_slice(&mut self.buffer));
self.counter += 1; self.counter += 1;
self.buffer = block.into_iter().collect(); self.pos = 0;
} }
let target_len = target.len().min(self.buffer.len()); let target_len = target.len().min(AES_BLOCK_SIZE - self.pos);
xor(&mut target[0..target_len], &self.buffer[0..target_len]); xor(
self.buffer.drain(0..target_len); &mut target[0..target_len],
&self.buffer[self.pos..(self.pos + target_len)],
);
target = &mut target[target_len..]; target = &mut target[target_len..];
self.pos += target_len;
} }
} }
} }
@ -116,8 +124,7 @@ pub fn xor(dest: &mut [u8], src: &[u8]) {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
use super::{xor, Aes256, AesCtrZipKeyStream}; use super::{Aes256, AesCtrZipKeyStream};
use std::io::Read;
#[test] #[test]
fn crypt_simple_example() { fn crypt_simple_example() {
@ -134,5 +141,10 @@ mod tests {
let mut plaintext = ciphertext; let mut plaintext = ciphertext;
key_stream.crypt(&mut plaintext); key_stream.crypt(&mut plaintext);
assert_eq!(&plaintext, expected_plaintext); assert_eq!(&plaintext, expected_plaintext);
// Round-tripping should yield the ciphertext again.
let mut key_stream = AesCtrZipKeyStream::<Aes256>::new(&key);
key_stream.crypt(&mut plaintext);
assert_eq!(plaintext, ciphertext);
} }
} }