koishi-plugin-adapter-iirose
Version:
[IIROSE-蔷薇花园](https://iirose.com/)适配器
17 lines (16 loc) • 480 B
TypeScript
/**
* 生成 MD5 哈希
*/
export declare function md5(data: string): string;
/**
* 检查密码是否为32位小写MD5格式
*/
export declare function isMd5Format(password: string): boolean;
/**
* 获取密码的MD5值,如果已经是MD5格式则直接返回
*/
export declare function getMd5Password(password: string): string | null;
/**
* 比较密码是否匹配目标MD5值
*/
export declare function comparePassword(password: string, targetMd5: string): boolean;