mirror of
https://github.com/bitwarden/browser
synced 2025-12-18 09:13:33 +00:00
10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
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;
|
|
}
|