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

change orgId input to masterPasswordPolicyOptions (#9833)

This commit is contained in:
rr-bw
2024-06-26 10:06:50 -07:00
committed by GitHub
parent 5a74371672
commit 31e5337ecf
5 changed files with 37 additions and 62 deletions

View File

@@ -0,0 +1,9 @@
import { PBKDF2KdfConfig } from "@bitwarden/common/auth/models/domain/kdf-config";
import { MasterKey } from "@bitwarden/common/types/key";
export interface PasswordInputResult {
masterKey: MasterKey;
masterKeyHash: string;
kdfConfig: PBKDF2KdfConfig;
hint: string;
}