Files
aliasvault/core/models/src/metadata/EncryptionKeyDerivationParams.ts
2025-12-11 09:19:03 +01:00

11 lines
364 B
TypeScript

/**
* These parameters for deriving encryption key from plain text password. These are stored
* as metadata in the vault upon initial login, and are used to derive the encryption key
* from the plain text password in the unlock screen.
*/
export type EncryptionKeyDerivationParams = {
encryptionType: string,
encryptionSettings: string,
salt: string,
};