UNPKG

icqq

Version:

QQ protocol for NodeJS!

14 lines (13 loc) 285 B
/// <reference types="node" /> /** * 编码 * @param data * @param key */ export declare function aesEncrypt(data: string, key: string): Buffer; /** * 解码 * @param encryptedData * @param key */ export declare function aesDecrypt(encryptedData: string, key: string): string;