node md5加密
时间: 2023-09-16 22:06:56 浏览: 158
md5加密
你可以使用Node.js中的`crypto`模块来进行MD5加密。以下是一个示例代码:
```javascript
const crypto = require('crypto');
function md5Hash(input) {
const hash = crypto.createHash('md5');
hash.update(input);
return hash.digest('hex');
}
const plaintext = 'Hello, world!';
const encryptedText = md5Hash(plaintext);
console.log('Plaintext:', plaintext);
console.log('Encrypted Text (MD5):', encryptedText);
```
运行上述代码,将输出如下结果:
```
Plaintext: Hello, world!
Encrypted Text (MD5): b10a8db164e0754105b7a99be72e3fe5
```
请注意,MD5算法已经被认为不够安全,不适合用于密码存储或其他需要高度安全性的场景。
阅读全文