飞鱼博客
首页
文章分类
服务器
编程
软件
生活
二次元
其它
标签
关于我
搜索
飞鱼
恭喜你发现了一个菜鸡博主。
首页
搜索结果
Node.js 对称加密算法 chacha20-poly1305、aes-256-gcm 的简单实现
飞鱼
2022年04月24日 08:34:13
// Node.js v16.14.2 const crypto = require('crypto') // 查看支持的算法列表 let cryptoList = crypto.getCiphers() cryptoList = cryptoList.filter(item => item.indexOf('chacha20') !== -1) console.log(cryptoList) // [ 'chacha20', 'chac...
编程
1138
1
© 2020 飞鱼的博客