EASYAIuniappNewUI/node_modules/licia/rc4.d.ts
2025-02-08 18:50:38 +08:00

7 lines
133 B
TypeScript

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