gpt4 book ai didi

Node.js 使用 -nosalt 选项进行加密

转载 作者:太空宇宙 更新时间:2023-11-03 23:45:01 24 4
gpt4 key购买 nike

来自这篇文章:What's wrong with nodejs crypto decipher?我发现为了让我的代码工作,我需要使用 openSSL -nosalt 选项加密我的数据,因为 node.js 加密库的工作方式。由于我使用 Node.js 加密库进行加密,因此我需要知道如何使用 -nosalt 选项对数据进行加密。我还使用 openSSL aes256 算法。

谢谢,
阿里

最佳答案

链接的问题如何解密:

var crypto=require('crypto')
var cipher=crypto.createDecipher('aes-256-cbc', "password")
var enc = cipher.update("Mh5yxIyZH+fSMTkSgkLa5w==", 'base64', 'utf8')
enc += cipher.final('utf8')

加密实际上是完全相反的。

var crypto=require('crypto')
var cipher=crypto.createCipher('aes-256-cbc', "password")
var enc = cipher.update("owlstead\n", 'binary', 'base64')
enc += cipher.final('base64')

关于Node.js 使用 -nosalt 选项进行加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14906401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com