saving progress

This commit is contained in:
mamoniot 2023-02-25 19:30:02 -05:00
commit e9ff9b98f1
No known key found for this signature in database
GPG key ID: ADCCDBBE0E3D3B3B
2 changed files with 218 additions and 0 deletions

View file

@ -0,0 +1,217 @@
/// AES-GMAC-SIV encryptor/decryptor.
pub struct AesGmacSiv {
tag: [u8; 16],
tmp: [u8; 16],
k0: Vec<u8>,
k1: Vec<u8>,
ctr: Option<Crypter>,
gmac: Option<Crypter>,
}
impl AesGmacSiv {
/// Create a new keyed instance of AES-GMAC-SIV
/// The key may be of size 16, 24, or 32 bytes (128, 192, or 256 bits). Any other size will panic.
pub fn new(k0: &[u8], k1: &[u8]) -> Self {
if k0.len() != 32 && k0.len() != 24 && k0.len() != 16 {
panic!("AES supports 128, 192, or 256 bits keys");
}
if k1.len() != k0.len() {
panic!("k0 and k1 must be of the same size");
}
AesGmacSiv {
tag: [0_u8; 16],
tmp: [0_u8; 16],
k0: k0.to_vec(),
k1: k1.to_vec(),
ctr: None,
gmac: None,
}
}
/// Reset to prepare for another encrypt or decrypt operation.
#[inline(always)]
pub fn reset(&mut self) {
let _ = self.ctr.take();
let _ = self.gmac.take();
}
/// Initialize for encryption.
#[inline(always)]
pub fn encrypt_init(&mut self, iv: &[u8]) {
self.tag[0..8].copy_from_slice(iv);
self.tag[8..12].fill(0);
let _ = self.gmac.replace(
Crypter::new(
aes_gcm_by_key_size(self.k0.len()),
Mode::Encrypt,
self.k0.as_slice(),
Some(&self.tag[0..12]),
)
.unwrap(),
);
}
/// Set additional authenticated data (data to be authenticated but not encrypted).
/// This can currently only be called once. Multiple calls will result in corrupt data.
#[inline(always)]
pub fn encrypt_set_aad(&mut self, data: &[u8]) {
let gmac = self.gmac.as_mut().unwrap();
let _ = gmac.aad_update(data);
let mut pad = data.len() & 0xf;
if pad != 0 {
pad = 16 - pad;
let _ = gmac.aad_update(&crate::ZEROES[0..pad]);
}
}
/// Feed plaintext in for the first encryption pass.
/// This may be called more than once.
#[inline(always)]
pub fn encrypt_first_pass(&mut self, plaintext: &[u8]) {
let _ = self.gmac.as_mut().unwrap().aad_update(plaintext);
}
/// Finish first pass and begin second pass.
#[inline(always)]
pub fn encrypt_first_pass_finish(&mut self) {
let gmac = self.gmac.as_mut().unwrap();
let _ = gmac.finalize(&mut self.tmp);
let _ = gmac.get_tag(&mut self.tmp);
self.tag[8] = self.tmp[0] ^ self.tmp[8];
self.tag[9] = self.tmp[1] ^ self.tmp[9];
self.tag[10] = self.tmp[2] ^ self.tmp[10];
self.tag[11] = self.tmp[3] ^ self.tmp[11];
self.tag[12] = self.tmp[4] ^ self.tmp[12];
self.tag[13] = self.tmp[5] ^ self.tmp[13];
self.tag[14] = self.tmp[6] ^ self.tmp[14];
self.tag[15] = self.tmp[7] ^ self.tmp[15];
let mut tag_tmp = [0_u8; 32];
let mut ecb = Crypter::new(aes_ecb_by_key_size(self.k1.len()), Mode::Encrypt, self.k1.as_slice(), None).unwrap();
ecb.pad(false);
if ecb.update(&self.tag, &mut tag_tmp).unwrap() != 16 {
assert_eq!(ecb.finalize(&mut tag_tmp).unwrap(), 16);
}
self.tag.copy_from_slice(&tag_tmp[0..16]);
self.tmp.copy_from_slice(&tag_tmp[0..16]);
self.tmp[12] &= 0x7f;
let _ = self.ctr.replace(
Crypter::new(
aes_ctr_by_key_size(self.k1.len()),
Mode::Encrypt,
self.k1.as_slice(),
Some(&self.tmp),
)
.unwrap(),
);
}
/// Feed plaintext for second pass and write ciphertext to supplied buffer.
/// This may be called more than once.
#[inline(always)]
pub fn encrypt_second_pass(&mut self, plaintext: &[u8], ciphertext: &mut [u8]) {
let _ = self.ctr.as_mut().unwrap().update(plaintext, ciphertext);
}
/// Encrypt plaintext in place.
/// This may be called more than once.
#[inline(always)]
pub fn encrypt_second_pass_in_place(&mut self, plaintext_to_ciphertext: &mut [u8]) {
let _ = self.ctr.as_mut().unwrap().update(
unsafe { std::slice::from_raw_parts(plaintext_to_ciphertext.as_ptr(), plaintext_to_ciphertext.len()) },
plaintext_to_ciphertext,
);
}
/// Finish second pass and return a reference to the tag for this message.
/// The tag returned remains valid until reset() is called.
#[inline(always)]
pub fn encrypt_second_pass_finish(&mut self) -> &[u8; 16] {
return &self.tag;
}
/// Initialize this cipher for decryption.
/// The supplied tag must be 16 bytes in length. Any other length will panic.
#[inline(always)]
pub fn decrypt_init(&mut self, tag: &[u8]) {
self.tmp.copy_from_slice(tag);
self.tmp[12] &= 0x7f;
let _ = self.ctr.replace(
Crypter::new(
aes_ctr_by_key_size(self.k1.len()),
Mode::Decrypt,
self.k1.as_slice(),
Some(&self.tmp),
)
.unwrap(),
);
let mut tag_tmp = [0_u8; 32];
let mut ecb = Crypter::new(aes_ecb_by_key_size(self.k1.len()), Mode::Decrypt, self.k1.as_slice(), None).unwrap();
ecb.pad(false);
if ecb.update(tag, &mut tag_tmp).unwrap() != 16 {
assert_eq!(ecb.finalize(&mut tag_tmp).unwrap(), 16);
}
self.tag.copy_from_slice(&tag_tmp[0..16]);
tag_tmp[8..12].fill(0);
let _ = self.gmac.replace(
Crypter::new(
aes_gcm_by_key_size(self.k0.len()),
Mode::Encrypt,
self.k0.as_slice(),
Some(&tag_tmp[0..12]),
)
.unwrap(),
);
}
/// Set additional authenticated data to be checked.
#[inline(always)]
pub fn decrypt_set_aad(&mut self, data: &[u8]) {
self.encrypt_set_aad(data);
}
/// Decrypt ciphertext and write to plaintext.
/// This may be called more than once.
#[inline(always)]
pub fn decrypt(&mut self, ciphertext: &[u8], plaintext: &mut [u8]) {
let _ = self.ctr.as_mut().unwrap().update(ciphertext, plaintext);
let _ = self.gmac.as_mut().unwrap().aad_update(plaintext);
}
/// Decrypt ciphertext in place.
/// This may be called more than once.
#[inline(always)]
pub fn decrypt_in_place(&mut self, ciphertext_to_plaintext: &mut [u8]) {
self.decrypt(
unsafe { std::slice::from_raw_parts(ciphertext_to_plaintext.as_ptr(), ciphertext_to_plaintext.len()) },
ciphertext_to_plaintext,
);
}
/// Finish decryption and return true if authentication appears valid.
/// If this returns false the message should be dropped.
#[inline(always)]
pub fn decrypt_finish(&mut self) -> Option<&[u8; 16]> {
let gmac = self.gmac.as_mut().unwrap();
let _ = gmac.finalize(&mut self.tmp);
let _ = gmac.get_tag(&mut self.tmp);
if (self.tag[8] == self.tmp[0] ^ self.tmp[8])
&& (self.tag[9] == self.tmp[1] ^ self.tmp[9])
&& (self.tag[10] == self.tmp[2] ^ self.tmp[10])
&& (self.tag[11] == self.tmp[3] ^ self.tmp[11])
&& (self.tag[12] == self.tmp[4] ^ self.tmp[12])
&& (self.tag[13] == self.tmp[5] ^ self.tmp[13])
&& (self.tag[14] == self.tmp[6] ^ self.tmp[14])
&& (self.tag[15] == self.tmp[7] ^ self.tmp[15])
{
Some(&self.tag)
} else {
None
}
}
}
unsafe impl Send for AesGmacSiv {}

View file

@ -4,6 +4,7 @@ mod cipher_ctx;
mod bn; mod bn;
mod ec; mod ec;
pub mod aes_gmac_siv;
pub mod secret; pub mod secret;
pub mod random; pub mod random;
pub mod aes; pub mod aes;