1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00

default iterations when registering is now 100k

This commit is contained in:
Kyle Spearrin 2018-10-02 09:06:03 -04:00
parent fc1bcb34a0
commit c3a2d3a536

View File

@ -60,7 +60,7 @@ export class RegisterComponent {
this.name = this.name === '' ? null : this.name;
this.email = this.email.trim().toLowerCase();
const kdf = KdfType.PBKDF2_SHA256;
const kdfIterations = 5000;
const kdfIterations = 100000;
const key = await this.cryptoService.makeKey(this.masterPassword, this.email, kdf, kdfIterations);
const encKey = await this.cryptoService.makeEncKey(key);
const hashedPassword = await this.cryptoService.hashPassword(this.masterPassword, key);