1. 首页
  2. 数据库
  3. 其它
  4. 测试:用Java测试 源码

测试:用Java测试 源码

上传者: 2021-02-17 22:11:36上传 ZIP文件 8.89MB 热度 6次
const crypto = require('crypto'); const algorithm ='aes-256-cbc'; const key = crypto.randomBytes(32); const iv = crypto.randomBytes(16); 函数crypto(text){let cipher = crypto.createCipheriv('aes-256-cbc',Buffer.from(key),iv); 让加密= cipher.update(text); 已加密= Buffer.concat([encrypted,cipher.final()]); 返回
用户评论