1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00
This commit is contained in:
Kyle Spearrin
2018-08-27 19:55:05 -04:00
parent 00562d083b
commit ae54094fcd
4 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
import { PasswordRequest } from './passwordRequest';
import { KdfType } from '../../enums/kdfType';
export class KdfRequest extends PasswordRequest {
kdf: KdfType;
kdfIterations: number;
}