243 lines
7.6 KiB
Rust
243 lines
7.6 KiB
Rust
use aes::Aes256;
|
|
use block_modes::block_padding::{NoPadding, Padding, Pkcs7};
|
|
use block_modes::{BlockMode, Cbc};
|
|
use ring::pbkdf2;
|
|
use ring::rand::SecureRandom;
|
|
use serde::{Deserialize, Serialize};
|
|
use thiserror::Error;
|
|
|
|
const SALT_LENGTH: usize = 8;
|
|
const IV_LENGTH: usize = 16;
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub struct EntryEncryptionParams {
|
|
#[serde(rename = "encryption_iv")]
|
|
pub iv: String,
|
|
#[serde(rename = "encryption_salt")]
|
|
pub salt: String,
|
|
#[serde(default, rename = "encryption_scheme")]
|
|
pub scheme: EncryptionScheme,
|
|
}
|
|
|
|
impl EntryEncryptionParams {
|
|
pub fn generate() -> EntryEncryptionParams {
|
|
let rng = ring::rand::SystemRandom::new();
|
|
let mut salt = [0u8; SALT_LENGTH];
|
|
let mut iv = [0u8; IV_LENGTH];
|
|
rng.fill(&mut salt).expect("Unable to generate salt.");
|
|
rng.fill(&mut iv).expect("Unable to generate IV.");
|
|
EntryEncryptionParams {
|
|
salt: base64::encode(salt),
|
|
iv: base64::encode(iv),
|
|
scheme: Default::default(),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
|
pub enum EncryptionScheme {
|
|
/// Encryption scheme that is compatible with SteamDesktopAuthenticator.
|
|
LegacySdaCompatible = -1,
|
|
}
|
|
|
|
impl Default for EncryptionScheme {
|
|
fn default() -> Self {
|
|
Self::LegacySdaCompatible
|
|
}
|
|
}
|
|
|
|
pub trait EntryEncryptor {
|
|
fn encrypt(
|
|
passkey: &String,
|
|
params: &EntryEncryptionParams,
|
|
plaintext: Vec<u8>,
|
|
) -> anyhow::Result<Vec<u8>, EntryEncryptionError>;
|
|
fn decrypt(
|
|
passkey: &String,
|
|
params: &EntryEncryptionParams,
|
|
ciphertext: Vec<u8>,
|
|
) -> anyhow::Result<Vec<u8>, EntryEncryptionError>;
|
|
}
|
|
|
|
/// Encryption scheme that is compatible with SteamDesktopAuthenticator.
|
|
pub struct LegacySdaCompatible;
|
|
|
|
impl LegacySdaCompatible {
|
|
const PBKDF2_ITERATIONS: u32 = 50000; // This is excessive, but necessary to maintain compatibility with SteamDesktopAuthenticator.
|
|
const KEY_SIZE_BYTES: usize = 32;
|
|
|
|
fn get_encryption_key(
|
|
passkey: &String,
|
|
salt: &String,
|
|
) -> anyhow::Result<[u8; Self::KEY_SIZE_BYTES]> {
|
|
let password_bytes = passkey.as_bytes();
|
|
let salt_bytes = base64::decode(salt)?;
|
|
let mut full_key: [u8; Self::KEY_SIZE_BYTES] = [0u8; Self::KEY_SIZE_BYTES];
|
|
pbkdf2::derive(
|
|
pbkdf2::PBKDF2_HMAC_SHA1,
|
|
std::num::NonZeroU32::new(Self::PBKDF2_ITERATIONS).unwrap(),
|
|
&salt_bytes,
|
|
password_bytes,
|
|
&mut full_key,
|
|
);
|
|
return Ok(full_key);
|
|
}
|
|
}
|
|
|
|
type Aes256Cbc = Cbc<Aes256, NoPadding>;
|
|
impl EntryEncryptor for LegacySdaCompatible {
|
|
// ngl, this logic sucks ass. its kinda annoying that the logic is not completely symetric.
|
|
|
|
fn encrypt(
|
|
passkey: &String,
|
|
params: &EntryEncryptionParams,
|
|
plaintext: Vec<u8>,
|
|
) -> anyhow::Result<Vec<u8>, EntryEncryptionError> {
|
|
let key = Self::get_encryption_key(&passkey.into(), ¶ms.salt)?;
|
|
let iv = base64::decode(¶ms.iv)?;
|
|
let cipher = Aes256Cbc::new_from_slices(&key, &iv)?;
|
|
|
|
let origsize = plaintext.len();
|
|
let buffersize: usize = (origsize / 16 + (if origsize % 16 == 0 { 0 } else { 1 })) * 16;
|
|
let mut buffer = vec![];
|
|
for chunk in plaintext.as_slice().chunks(128) {
|
|
let chunksize = chunk.len();
|
|
let buffersize = (chunksize / 16 + (if chunksize % 16 == 0 { 0 } else { 1 })) * 16;
|
|
let mut chunkbuffer = vec![0xffu8; buffersize];
|
|
chunkbuffer[..chunksize].copy_from_slice(&chunk);
|
|
if buffersize != chunksize {
|
|
// pad the last chunk
|
|
chunkbuffer = Pkcs7::pad(&mut chunkbuffer, chunksize, buffersize)
|
|
.unwrap()
|
|
.to_vec();
|
|
}
|
|
buffer.append(&mut chunkbuffer);
|
|
}
|
|
let ciphertext = cipher.encrypt(&mut buffer, buffersize)?;
|
|
let final_buffer = base64::encode(&ciphertext);
|
|
return Ok(final_buffer.as_bytes().to_vec());
|
|
}
|
|
|
|
fn decrypt(
|
|
passkey: &String,
|
|
params: &EntryEncryptionParams,
|
|
ciphertext: Vec<u8>,
|
|
) -> anyhow::Result<Vec<u8>, EntryEncryptionError> {
|
|
let key = Self::get_encryption_key(&passkey.into(), ¶ms.salt)?;
|
|
let iv = base64::decode(¶ms.iv)?;
|
|
let cipher = Aes256Cbc::new_from_slices(&key, &iv)?;
|
|
|
|
let decoded = base64::decode(ciphertext)?;
|
|
let size: usize = decoded.len() / 16 + (if decoded.len() % 16 == 0 { 0 } else { 1 });
|
|
let mut buffer = vec![0xffu8; 16 * size];
|
|
buffer[..decoded.len()].copy_from_slice(&decoded);
|
|
let mut decrypted = cipher.decrypt(&mut buffer)?;
|
|
let unpadded = Pkcs7::unpad(&mut decrypted)?;
|
|
return Ok(unpadded.to_vec());
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Error)]
|
|
pub enum EntryEncryptionError {
|
|
#[error(transparent)]
|
|
Unknown(#[from] anyhow::Error),
|
|
}
|
|
|
|
/// For some reason, these errors do not get converted to `ManifestAccountLoadError`s, even though they get converted into `anyhow::Error` just fine. I am too lazy to figure out why right now.
|
|
impl From<block_modes::BlockModeError> for EntryEncryptionError {
|
|
fn from(error: block_modes::BlockModeError) -> Self {
|
|
return Self::Unknown(anyhow::Error::from(error));
|
|
}
|
|
}
|
|
impl From<block_modes::InvalidKeyIvLength> for EntryEncryptionError {
|
|
fn from(error: block_modes::InvalidKeyIvLength) -> Self {
|
|
return Self::Unknown(anyhow::Error::from(error));
|
|
}
|
|
}
|
|
impl From<block_modes::block_padding::PadError> for EntryEncryptionError {
|
|
fn from(error: block_modes::block_padding::PadError) -> Self {
|
|
return Self::Unknown(anyhow!("PadError"));
|
|
}
|
|
}
|
|
impl From<block_modes::block_padding::UnpadError> for EntryEncryptionError {
|
|
fn from(error: block_modes::block_padding::UnpadError) -> Self {
|
|
return Self::Unknown(anyhow!("UnpadError"));
|
|
}
|
|
}
|
|
impl From<base64::DecodeError> for EntryEncryptionError {
|
|
fn from(error: base64::DecodeError) -> Self {
|
|
return Self::Unknown(anyhow::Error::from(error));
|
|
}
|
|
}
|
|
impl From<std::io::Error> for EntryEncryptionError {
|
|
fn from(error: std::io::Error) -> Self {
|
|
return Self::Unknown(anyhow::Error::from(error));
|
|
}
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
use proptest::prelude::*;
|
|
|
|
/// This test ensures compatibility with SteamDesktopAuthenticator and with previous versions of steamguard-cli
|
|
#[test]
|
|
fn test_encryption_key() {
|
|
assert_eq!(
|
|
LegacySdaCompatible::get_encryption_key(&"password".into(), &"GMhL0N2hqXg=".into())
|
|
.unwrap(),
|
|
base64::decode("KtiRa4/OxW83MlB6URf+Z8rAGj7CBY+pDlwD/NuVo6Y=")
|
|
.unwrap()
|
|
.as_slice()
|
|
);
|
|
|
|
assert_eq!(
|
|
LegacySdaCompatible::get_encryption_key(&"password".into(), &"wTzTE9A6aN8=".into())
|
|
.unwrap(),
|
|
base64::decode("Dqpej/3DqEat0roJaHmu3luYgDzRCUmzX94n4fqvWj8=")
|
|
.unwrap()
|
|
.as_slice()
|
|
);
|
|
}
|
|
|
|
#[test]
|
|
fn test_ensure_encryption_symmetric() -> anyhow::Result<()> {
|
|
let passkey = "password";
|
|
let params = EntryEncryptionParams::generate();
|
|
let orig = "tactical glizzy".as_bytes().to_vec();
|
|
let encrypted =
|
|
LegacySdaCompatible::encrypt(&passkey.clone().into(), ¶ms, orig.clone()).unwrap();
|
|
let result = LegacySdaCompatible::decrypt(&passkey.into(), ¶ms, encrypted).unwrap();
|
|
assert_eq!(orig, result.to_vec());
|
|
return Ok(());
|
|
}
|
|
|
|
prop_compose! {
|
|
/// An insecure but reproducible strategy for generating encryption params.
|
|
fn encryption_params()(salt in any::<[u8; SALT_LENGTH]>(), iv in any::<[u8; IV_LENGTH]>()) -> EntryEncryptionParams {
|
|
EntryEncryptionParams {
|
|
salt: base64::encode(&salt),
|
|
iv: base64::encode(&iv),
|
|
scheme: EncryptionScheme::LegacySdaCompatible,
|
|
}
|
|
}
|
|
}
|
|
|
|
// proptest! {
|
|
// #[test]
|
|
// fn ensure_encryption_symmetric(
|
|
// passkey in ".{1,}",
|
|
// params in encryption_params(),
|
|
// data in any::<Vec<u8>>(),
|
|
// ) {
|
|
// prop_assume!(data.len() >= 2);
|
|
// let mut orig = data;
|
|
// orig[0] = '{' as u8;
|
|
// let n = orig.len() - 1;
|
|
// orig[n] = '}' as u8;
|
|
// let encrypted = LegacySdaCompatible::encrypt(&passkey.clone().into(), ¶ms, orig.clone()).unwrap();
|
|
// let result = LegacySdaCompatible::decrypt(&passkey.into(), ¶ms, encrypted).unwrap();
|
|
// prop_assert_eq!(orig, result.to_vec());
|
|
// }
|
|
// }
|
|
}
|