1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-06 11:43:51 +00:00

Add comments

This commit is contained in:
Bernd Schoolmann
2025-07-22 13:01:46 +02:00
parent 9c8654b364
commit 37bdf652c3

View File

@@ -9,6 +9,9 @@ import { EncString } from "../../crypto/models/enc-string";
* The Base64-encoded master password authentication hash, that is sent to the server for authentication.
*/
export type MasterPasswordAuthenticationHash = Opaque<string, "MasterPasswordAuthenticationHash">;
/**
* You MUST obtain this through the emailToSalt function in MasterPasswordService
*/
export type MasterPasswordSalt = Opaque<string, "MasterPasswordSalt">;
export type MasterKeyWrappedUserKey = Opaque<EncString, "MasterPasswordSalt">;