飞鱼

恭喜你发现了一个菜鸡博主。

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...

© 2020 飞鱼的博客