1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

adjust default kdf iterations to 350k (#4482)

* adjust default kdf iterations to 350k

* update test
This commit is contained in:
Kyle Spearrin
2023-01-18 13:20:14 -05:00
committed by GitHub
parent a6308042b6
commit dbb0bbb91c
2 changed files with 3 additions and 3 deletions

View File

@@ -3,5 +3,5 @@ export enum KdfType {
}
export const DEFAULT_KDF_TYPE = KdfType.PBKDF2_SHA256;
export const DEFAULT_KDF_ITERATIONS = 100000;
export const DEFAULT_KDF_ITERATIONS = 350000;
export const SEND_KDF_ITERATIONS = 100000;