
nodejs如何利用3DES进行加密解密,下面web建站小编给大家简单介绍一下!
安装脚手架
npm install crypto
生成密钥
const crypto = require('crypto');
const key = crypto.randomBytes(24);
console.log(key.toString('hex'));
加密数据
const crypto = require('crypto');
const key = crypto.randomBytes(24);
const text = 'Hello, world!';
const cipher = crypto.createCipheriv('des-ede3', key, '');
let encrypted = cipher.update(text, 'utf8', 'hex');
encrypted += cipher.final('hex');
console.log(encrypted);
解密数据
const crypto = require('crypto');
const key = crypto.randomBytes(24);
const text = 'Hello, world!';
const cipher = crypto.createCipheriv('des-ede3', key, '');
let encrypted = cipher.update(text, 'utf8', 'hex');
encrypted += cipher.final('hex');
console.log(encrypted);
const decipher = crypto.createDecipheriv('des-ede3', key, '');
let decrypted = decipher.update(encrypted, 'hex', 'utf8');
decrypted += decipher.final('utf8');
console.log(decrypted);
上面是“nodejs如何利用3DES加密解密”的全面内容,想了解更多关于 nodejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4503.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

zblog建站如何获取文章排行榜
AI Humanizer官网使用入口,Sidekicker旗下的专业AI文本自然化改写工具
浙江博物馆官方网址入口,位于浙江省杭州市西湖区
一款面向企业的无代码AI开发工具——影刀AI Power
中国教育在线:提供中小学/高考/考研/就业/生涯规划/教师招聘等信息服务平台