1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-22 12:24:01 +00:00
This commit is contained in:
Bernd Schoolmann
2025-07-16 15:43:33 +02:00
parent e09baeabb1
commit 7312206a16

View File

@@ -15,7 +15,7 @@ export type MasterKeyWrappedUserKey = Opaque<EncString, "MasterPasswordSalt">;
* The data required to unlock the master password.
*/
export type MasterPasswordUnlockData = {
salt: string;
salt: MasterPasswordSalt;
kdf: KdfConfig;
masterKeyWrappedUserKey: MasterKeyWrappedUserKey;
};
@@ -24,7 +24,7 @@ export type MasterPasswordUnlockData = {
* The data required to unlock the master password.
*/
export type MasterPasswordAuthenticationData = {
salt: string;
salt: MasterPasswordSalt;
kdf: KdfConfig;
masterPasswordAuthenticationHash: MasterPasswordAuthenticationHash;
};