1 Star 0 Fork 526

peoplesofter/FlyFish

forked from 云智慧/FlyFish 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
password.js 328 Bytes
一键复制 编辑 原始数据 按行查看 历史
tiger.wang 提交于 2021-10-08 15:26 . init project
/**
* 加密库
* @type {module.exports}
*/
const crypto = require('crypto');
/**
* md5加密
* @param data
* @returns {PromiseLike<ArrayBuffer>}
*/
const md5 = (data) => {
const hash = crypto.createHash('md5');
hash.update(data.toString());
return hash.digest('hex');
}
console.log(md5("tianjishuju!@#$"))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/peoplesofter/fly-fish.git
[email protected]:peoplesofter/fly-fish.git
peoplesofter
fly-fish
FlyFish
main

搜索帮助