mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-12 17:38:32 -04:00
11 lines
364 B
TypeScript
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,
|
|
};
|