You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function md5(string) {
|
|
function md5_RotateLeft(lValue, iShiftBits) {
|
|
return (lValue << iShiftBits) | (lValue >>> (32 - iShiftBits));
|
|
}
|
|
// ... (这里省略了具体的 MD5 实现代码)
|
|
return temp.toLowerCase();
|
|
}
|
|
|
|
module.exports = md5;
|