use crate::prelude::*; use block_modes::BlockMode as _; use block_padding::Padding as _; use hmac::{Mac as _, NewMac as _}; use rand::RngCore as _; use zeroize::Zeroize as _; pub enum CipherString { Symmetric { // ty: 2 (AES_256_CBC_HMAC_SHA256) iv: Vec, ciphertext: Vec, mac: Option>, }, Asymmetric { // ty: 4 (RSA_2048_OAEP_SHA1) ciphertext: Vec, }, } impl CipherString { pub fn new(s: &str) -> Result { let parts: Vec<&str> = s.split('.').collect(); if parts.len() != 2 { return Err(Error::InvalidCipherString { reason: "couldn't find type".to_string(), }); } let ty = parts[0].as_bytes(); if ty.len() != 1 { return Err(Error::UnimplementedCipherStringType { ty: parts[0].to_string(), }); } let ty = ty[0] - b'0'; let contents = parts[1]; match ty { 2 => { let parts: Vec<&str> = contents.split('|').collect(); if parts.len() < 2 || parts.len() > 3 { return Err(Error::InvalidCipherString { reason: format!( "type 2 cipherstring with {} parts", parts.len() ), }); } let iv = base64::decode(parts[0]) .map_err(|source| Error::InvalidBase64 { source })?; let ciphertext = base64::decode(parts[1]) .map_err(|source| Error::InvalidBase64 { source })?; let mac = if parts.len() > 2 { Some(base64::decode(parts[2]).map_err(|source| { Error::InvalidBase64 { source } })?) } else { None }; Ok(Self::Symmetric { iv, ciphertext, mac, }) } 4 | 6 => { // the only difference between 4 and 6 is the HMAC256 // signature appended at the end // https://github.com/bitwarden/jslib/blob/785b681f61f81690de6df55159ab07ae710bcfad/src/enums/encryptionType.ts#L8 // format is: | let contents = contents.split('|').next().unwrap(); let ciphertext = base64::decode(contents) .map_err(|source| Error::InvalidBase64 { source })?; Ok(Self::Asymmetric { ciphertext }) } _ => { if ty < 6 { Err(Error::TooOldCipherStringType { ty: ty.to_string() }) } else { Err(Error::UnimplementedCipherStringType { ty: ty.to_string(), }) } } } } pub fn encrypt_symmetric( keys: &crate::locked::Keys, plaintext: &[u8], ) -> Result { let iv = random_iv(); let cipher = block_modes::Cbc::< aes::Aes256, block_modes::block_padding::Pkcs7, >::new_from_slices(keys.enc_key(), &iv) .map_err(|source| Error::CreateBlockMode { source })?; let ciphertext = cipher.encrypt_vec(plaintext); let mut digest = hmac::Hmac::::new_from_slice(keys.mac_key()) .map_err(|source| Error::CreateHmac { source })?; digest.update(&iv); digest.update(&ciphertext); let mac = digest.finalize().into_bytes().as_slice().to_vec(); Ok(Self::Symmetric { iv, ciphertext, mac: Some(mac), }) } pub fn decrypt_symmetric( &self, keys: &crate::locked::Keys, ) -> Result> { match self { Self::Symmetric { iv, ciphertext, mac, } => { let cipher = decrypt_common_symmetric( keys, iv, ciphertext, mac.as_deref(), )?; cipher .decrypt_vec(ciphertext) .map_err(|source| Error::Decrypt { source }) } _ => Err(Error::InvalidCipherString { reason: "found an asymmetric cipherstring, expecting symmetric" .to_string(), }), } } pub fn decrypt_locked_symmetric( &self, keys: &crate::locked::Keys, ) -> Result { match self { Self::Symmetric { iv, ciphertext, mac, } => { let mut res = crate::locked::Vec::new(); res.extend(ciphertext.iter().copied()); let cipher = decrypt_common_symmetric( keys, iv, ciphertext, mac.as_deref(), )?; cipher .decrypt(res.data_mut()) .map_err(|source| Error::Decrypt { source })?; Ok(res) } _ => Err(Error::InvalidCipherString { reason: "found an asymmetric cipherstring, expecting symmetric" .to_string(), }), } } pub fn decrypt_locked_asymmetric( &self, private_key: &crate::locked::PrivateKey, ) -> Result { match self { Self::Asymmetric { ciphertext } => { let privkey_data = private_key.private_key(); let privkey_data = block_padding::Pkcs7::unpad(privkey_data) .map_err(|_| Error::Padding)?; let pkey = rsa::RSAPrivateKey::from_pkcs8(privkey_data) .map_err(|source| Error::Rsa { source })?; let mut bytes = pkey .decrypt( rsa::padding::PaddingScheme::new_oaep::(), ciphertext, ) .map_err(|source| Error::Rsa { source })?; // XXX it'd be great if the rsa crate would let us decrypt // into a preallocated buffer directly to avoid the // intermediate vec that needs to be manually zeroized, etc let mut res = crate::locked::Vec::new(); res.extend(bytes.iter().copied()); bytes.zeroize(); Ok(res) } _ => Err(Error::InvalidCipherString { reason: "found a symmetric cipherstring, expecting asymmetric" .to_string(), }), } } } fn decrypt_common_symmetric( keys: &crate::locked::Keys, iv: &[u8], ciphertext: &[u8], mac: Option<&[u8]>, ) -> Result> { if let Some(mac) = mac { let mut key = hmac::Hmac::::new_from_slice(keys.mac_key()) .map_err(|source| Error::CreateHmac { source })?; key.update(iv); key.update(ciphertext); if key.verify(mac).is_err() { return Err(Error::InvalidMac); } } block_modes::Cbc::< aes::Aes256, block_modes::block_padding::Pkcs7, >::new_from_slices(keys.enc_key(), iv) .map_err(|source| Error::CreateBlockMode { source }) } impl std::fmt::Display for CipherString { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { match self { Self::Symmetric { iv, ciphertext, mac, } => { let iv = base64::encode(&iv); let ciphertext = base64::encode(&ciphertext); if let Some(mac) = &mac { let mac = base64::encode(&mac); write!(f, "2.{}|{}|{}", iv, ciphertext, mac) } else { write!(f, "2.{}|{}", iv, ciphertext) } } Self::Asymmetric { ciphertext } => { let ciphertext = base64::encode(&ciphertext); write!(f, "4.{}", ciphertext) } } } } fn random_iv() -> Vec { let mut iv = vec![0_u8; 16]; let mut rng = rand::thread_rng(); rng.fill_bytes(&mut iv); iv }