mirror of
https://github.com/bitwarden/browser
synced 2026-02-22 12:24:01 +00:00
Fix type
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user