From 37bdf652c31641061558ebc91b8f751e5d109bf6 Mon Sep 17 00:00:00 2001 From: Bernd Schoolmann Date: Tue, 22 Jul 2025 13:01:46 +0200 Subject: [PATCH] Add comments --- .../master-password/types/master-password.types.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/common/src/key-management/master-password/types/master-password.types.ts b/libs/common/src/key-management/master-password/types/master-password.types.ts index 46d4b61c14e..4b7cf5365e2 100644 --- a/libs/common/src/key-management/master-password/types/master-password.types.ts +++ b/libs/common/src/key-management/master-password/types/master-password.types.ts @@ -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; +/** + * You MUST obtain this through the emailToSalt function in MasterPasswordService + */ export type MasterPasswordSalt = Opaque; export type MasterKeyWrappedUserKey = Opaque;