parent
7b9d7a1d88
commit
39ba4a2a17
@ -0,0 +1,56 @@
|
||||
use argon2::Argon2;
|
||||
use rand_chacha::ChaCha20Rng;
|
||||
use rand_core::{RngCore, SeedableRng};
|
||||
use std::path::PathBuf;
|
||||
use tauri::Config;
|
||||
|
||||
/// NOTE: Hash supplied to Stronghold must be 32bits long.
|
||||
/// This is a current limitation of Stronghold.
|
||||
const HASH_LENGTH: usize = 32;
|
||||
const SALT_FILENAME: &str = "stronghold_salt.txt";
|
||||
|
||||
pub struct KeyDerivation {}
|
||||
|
||||
impl KeyDerivation {
|
||||
/// Will create a key from [`password`] and a generated salt.
|
||||
/// Salt will be generated to file [`salt_path`] or taken from it
|
||||
/// if file already exists
|
||||
pub fn argon2(password: &str, salt_path: &PathBuf) -> Vec<u8> {
|
||||
let mut salt = [0u8; HASH_LENGTH];
|
||||
create_or_get_salt(&mut salt, salt_path);
|
||||
|
||||
let mut encoded = [0u8; HASH_LENGTH];
|
||||
Argon2::default()
|
||||
.hash_password_into(password.as_bytes(), &salt, &mut encoded)
|
||||
.expect("Failed to generate hash for password");
|
||||
encoded.to_vec()
|
||||
}
|
||||
|
||||
/// Will create a key from [`password`] and a generated salt.
|
||||
/// Salt will be generated/taken from a default file in the Tauri local
|
||||
/// directory
|
||||
pub fn argon2_with_config(password: &str, tauri_config: &Config) -> Vec<u8> {
|
||||
let salt_dir = tauri::api::path::app_local_data_dir(tauri_config)
|
||||
.expect("Application local directory not found");
|
||||
let mut salt_path = PathBuf::new();
|
||||
salt_path.push(salt_dir);
|
||||
salt_path.push(SALT_FILENAME);
|
||||
|
||||
KeyDerivation::argon2(password, &salt_path)
|
||||
}
|
||||
}
|
||||
|
||||
// NOTE: this is not ideal as we produce a single salt per application
|
||||
// rather than having different salt for each Stronghold snapshot/password
|
||||
fn create_or_get_salt(salt: &mut [u8], salt_path: &PathBuf) {
|
||||
if salt_path.is_file() {
|
||||
// Get existing salt
|
||||
let tmp = std::fs::read(salt_path).unwrap();
|
||||
salt.clone_from_slice(&tmp);
|
||||
} else {
|
||||
// Generate new salt
|
||||
let mut gen = ChaCha20Rng::from_entropy();
|
||||
gen.fill_bytes(salt);
|
||||
std::fs::write(salt_path, salt).expect("Failed to write salt for Stronghold")
|
||||
}
|
||||
}
|
Loading…
Reference in new issue