2025-11-14 06:32:36 -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;