7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
|
declare const rc4: {
|
||
|
encrypt(key: string, str: string): string;
|
||
|
decrypt(key: string, str: string): string;
|
||
|
};
|
||
|
|
||
|
export = rc4;
|