tweak parameters to use more memory

This commit is contained in:
b1ek 2023-08-01 14:10:36 +10:00
parent 26e37123f5
commit 53810678f6
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ use crate::num::Num;
const SALT: [u8; 0] = [];
pub fn hash(data: &[u8], out: &mut [u8]) {
let params = Params::new(6, 6, 1, 32).unwrap();
let params = Params::new(6, 64, 1, 32).unwrap();
scrypt(data, &SALT.clone(), &params, out).unwrap();
}