diff --git a/ng-wallet/src/lib.rs b/ng-wallet/src/lib.rs index 6f701ee..65c8d12 100644 --- a/ng-wallet/src/lib.rs +++ b/ng-wallet/src/lib.rs @@ -195,8 +195,8 @@ pub fn dec_encrypted_block( pub fn derive_key_from_pass(mut pass: Vec, salt: [u8; 16], wallet_id: WalletId) -> [u8; 32] { let params = ParamsBuilder::new() - .m_cost(10 * 1024) - .t_cost(12) + .m_cost(100 * 1024) + .t_cost(24) .p_cost(1) .data(AssociatedData::new(wallet_id.slice()).unwrap()) .output_len(32)