Files
2026-07-27 14:07:26 +08:00

7 lines
133 B
TypeScript

declare const rc4: {
encrypt(key: string, str: string): string;
decrypt(key: string, str: string): string;
};
export = rc4;