mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-14 22:08:45 +00:00
5 lines
86 B
TypeScript
5 lines
86 B
TypeScript
export type Ciphertext = {
|
|
ciphertext: string; // Base64
|
|
iv: string; // Base64
|
|
};
|