Remove get_random_64()

Its uses are replaced by get_randm_bytes() or encode_random_bytes().
This commit is contained in:
Samuel Tardieu
2022-11-13 10:03:04 +01:00
parent d0baa23f9a
commit 7445ee40f8
4 changed files with 3 additions and 8 deletions

View File

@@ -81,7 +81,7 @@ impl Send {
if let Some(password) = password {
self.password_iter = Some(PASSWORD_ITER);
let salt = crate::crypto::get_random_64();
let salt = crate::crypto::get_random_bytes::<64>().to_vec();
let hash = crate::crypto::hash_password(password.as_bytes(), &salt, PASSWORD_ITER as u32);
self.password_salt = Some(salt);
self.password_hash = Some(hash);

View File

@@ -93,7 +93,7 @@ impl User {
email_new_token: None,
password_hash: Vec::new(),
salt: crypto::get_random_64(),
salt: crypto::get_random_bytes::<64>().to_vec(),
password_iterations: CONFIG.password_iterations(),
security_stamp: crate::util::get_uuid(),