2025-11-13 13:13:34 -07:00

3 lines
171 B
TypeScript

export declare function encryptWithSecret(secret: Buffer, data: string): string;
export declare function decryptWithSecret(secret: Buffer, encryptedData: string): string;