1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

extend functionality for set password flow (#150)

This commit is contained in:
Kyle Spearrin
2020-08-17 10:34:52 -04:00
committed by GitHub
parent ed6978baff
commit 7bf00b4fb3
2 changed files with 52 additions and 30 deletions

View File

@@ -1,4 +1,12 @@
import { KeysRequest } from './keysRequest';
import { KdfType } from '../../enums/kdfType';
export class SetPasswordRequest {
newMasterPasswordHash: string;
masterPasswordHash: string;
key: string;
masterPasswordHint: string;
keys: KeysRequest;
kdf: KdfType;
kdfIterations: number;
}