Files
huishou/node_modules/licia/rc4.d.ts
T
2026-07-27 13:37:48 +08:00

7 lines
133 B
TypeScript

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