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