UNPKG

sqsdk-utils

Version:

双旗sdk业务工具包

7 lines (6 loc) 357 B
import { default as CryptoJS } from 'crypto-js'; export declare function encrypt(txt: any): string | false; export declare function decrypt(txt: any): string | false; export declare function aesEncrypt(content: any): string; export declare function aesDecrypt(content: any): string; export declare const decryptBase64: (str: any) => CryptoJS.lib.WordArray;