1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 09:13:33 +00:00

support for prelogin kdf info

This commit is contained in:
Kyle Spearrin
2018-08-14 15:12:10 -04:00
parent a7bbdf9c93
commit 9f26f9f377
15 changed files with 140 additions and 31 deletions

View File

@@ -0,0 +1,11 @@
import { KdfType } from '../../enums/kdfType';
export class PreloginResponse {
kdf: KdfType;
kdfIterations: number;
constructor(response: any) {
this.kdf = response.Kdf;
this.kdfIterations = response.KdfIterations;
}
}