mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-05-13 01:45:12 -04:00
12 lines
354 B
TypeScript
12 lines
354 B
TypeScript
import { Vault } from "./Vault";
|
|
|
|
/**
|
|
* Represents a request to change the users password including a new vault that is encrypted with the new password.
|
|
*/
|
|
export type VaultPasswordChangeRequest = Vault & {
|
|
currentClientPublicEphemeral: string;
|
|
currentClientSessionProof: string;
|
|
newPasswordSalt: string;
|
|
newPasswordVerifier: string;
|
|
}
|