rc4.d.ts 133 B

123456
  1. declare const rc4: {
  2. encrypt(key: string, str: string): string;
  3. decrypt(key: string, str: string): string;
  4. };
  5. export = rc4;