diff --git a/client/src/lib/crypto.ts b/client/src/lib/crypto.ts index a5292d8..c64c879 100644 --- a/client/src/lib/crypto.ts +++ b/client/src/lib/crypto.ts @@ -36,7 +36,7 @@ export function getKeyFromString(password: string) { } export async function getDerivedForKey(key: CryptoKey, salt: ArrayBuffer) { - const iterations = 1_000 + const iterations = 100_000 return window.crypto.subtle.deriveKey( { name: 'PBKDF2',