export declare function hex_md5(s: any): string; export declare function b64_md5(s: any): string; export declare function any_md5(s: any, e: any): string; export declare function hex_hmac_md5(k: any, d: any): string; export declare function b64_hmac_md5(k: any, d: any): string; export declare function any_hmac_md5(k: any, d: any, e: any): string; type EnCode = '32-bit-large' | '32-bit-small' | '16-bit-large' | '16-bit-small'; /** * @title md5 * @description md5加密 * @param {string} value * @param {EnCode} [core='32-bit-small'] * @returns {string} */ export declare function md5(value: string, core?: EnCode): string; export {}; //# sourceMappingURL=md5.d.ts.map