fix: 请求响应码常量,身份信息更换逻辑优化

This commit is contained in:
TsMask
2025-06-07 16:28:18 +08:00
parent d84a6626c1
commit 2f8ed1d821
3 changed files with 54 additions and 25 deletions

View File

@@ -48,3 +48,12 @@ export function decryptAES(ciphertext: string, aeskey: string): string {
}
return '';
}
/**
* MD5 编码
* @param message 字符串信息
* @returns hax码
*/
export function hexMD5(message: string): string {
return CryptoJS.MD5(message).toString(CryptoJS.enc.Hex);
}