Encrypted, ephemeral, private memos on atproto
at main 12 lines 208 B view raw
1export type KeyPair = { 2 secretKey: Uint8Array; 3 publicKey: Uint8Array; 4}; 5 6export interface EncryptedPayload { 7 cipherText: string; 8 content: string; 9 nonce: string; 10 hash: string; 11 length: number; 12}