9 lines
181 B
TypeScript
9 lines
181 B
TypeScript
/**
|
|
* Encrypted payload structure for storing encrypted data
|
|
* Used by the two-level encryption system
|
|
*/
|
|
export interface EncryptedPayload {
|
|
iv: string
|
|
ciphertext: string
|
|
}
|