登录 注册
当前位置:主页 > 资源下载 > 22 > elsie-four-cipher:ElsieFour(LC4)密码的node.js实现下载

elsie-four-cipher:ElsieFour(LC4)密码的node.js实现下载

  • 更新:2024-12-18 23:58:08
  • 大小:8KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Node.js - 前端
  • 格式:ZIP

资源介绍

埃尔西四密码 ElsieFour(LC4)密码( )的node.js实现。 当前支持加密和解密,但不支持随机数或签名auth。 安装 npm install elsie-four-cipher --save 例子 const cipher = require ( 'elsie-four-cipher' ) ; // encrypt(key, message). This example returns tk5j23tq94_gw9c#lhzs cipher . encrypt ( 's2ferw_nx346ty5odiupq#lmz8ajhgcvk79b' , 'aaaaaaaaaaaaaaaaaaaa' ) ; // decrypt (key, message). This example returns aaaaaaaaaaaaaaaaaaaa cipher . decrypt