当前位置: 首页 > 知识库问答 >
问题:

正在尝试使用crypto js和nodejs解密

陶柏
2023-03-14

我在微控制器和nodejs tcp服务器之间来回通信。微控制器与传感器数据形成json字符串。然后,微控制器将json字符串发送到WiFi模块。然后,WiFi模块使用AES256加密数据,将32个字符的十六进制字符作为密钥,然后再将加密数据发送到nodejs tcp服务器

nodejs TCP服务器使用Google Code Crypto JS的Crypto JS模块形式。

出于测试目的,我想将加密数据和解密数据输出到控制台。然而,我不确定如何做到这一点。我试图输出数据,但收到的是空白数据。例如,控制台的读数应该是:192.168。1.14:30001

旧代码:

  // I removed the old code to shrink this post and to remove any confusion.

编辑
我现在使用NodeJS提供的内置加密模块。我收到的错误是:

加密。js:292 var ret=这个_结合final();^TypeError:错误:06065064:数字信封例程:EVP_DecryptFinal_ex:解密时解密错误
。密码最终(crypto.js:292:27)
在套接字上解密(C:\Users\joes\Desktop\encrypt\tcp.js:18:24)
。(C:\Users\joes\Desktop\encrypt\tcp.js:44:23)
位于套接字。在套接字上发出(events.js:95:17)
。(_stream_readable.js:748:14)
位于套接字。emit(events.js:92:17)
在emitReadable(\u stream\u readable.js:410:10)
在emitReadable(\u stream\u readable.js:406:5)
在readableAddChunk(\u stream\u readable.js:168:9)
在套接字。可读的。推送(_stream_readable.js:130:10)

代码:

// Load the TCP Library
net = require('net');

// Load the Crypto Module
var crypto = require("crypto");

function encrypt(key, data) {
    var cipher = crypto.createCipher('aes256', key);
    var crypted = cipher.update(data, 'utf-8', 'hex');
    crypted += cipher.final('hex');

    return crypted;
}

function decrypt(key, data) {
    var decipher = crypto.createDecipher('aes256', key);
    var decrypted = decipher.update(data, 'hex', 'utf-8');
    decrypted += decipher.final('utf-8');

    return decrypted;
}

// Keep track of the chat clients
var clients = [];

// Start a TCP Server
net.createServer(function (socket) {

// Identify this client
socket.name = socket.remoteAddress + ":" + socket.remotePort

// Put this new client in the list
clients.push(socket);

// Send a nice welcome message and announce
socket.write("Welcome " + socket.name + "\n");
broadcast(socket.name + " joined the chat\n", socket);

// Handle incoming messages from clients.
socket.on('data', function (data) {
  var key = new Buffer('85CE6CCF67FBBAA8BB13479C3A6E084D', 'hex');

  // Attempt to decrypt data with the above key
  var decryptedText = decrypt(key, data);
  //console.log("Decrypted Text: " + decrypt(key, encrypt(key, '{"resTemp":"82.19","roomTemp":98,"ph":58,"ec":700}>')));

  broadcast(socket.name + "> " + decryptedText, socket);
  //console.log(data);
});

// Remove the client from the list when it leaves
socket.on('end', function () {
  clients.splice(clients.indexOf(socket), 1);
  broadcast(socket.name + " left the chat.\n");
});
// Send a message to all clients
function broadcast(message, sender) {
  clients.forEach(function (client) {
  // Don't want to send it to sender
  if (client === sender) return;
  client.write(message);
});
// Log it to the server output too
process.stdout.write(message)
}

}).listen(5000);

// Put a friendly message on the terminal of the server.
console.log("Chat server running at port 5000\n");

data应为缓冲对象,并包含一个json字符串,例如:{resTemp:82.19,room Temp:98,ph:58,ec:700}

共有1个答案

楚望
2023-03-14

使用内置加密模块的代码几乎正确。值得注意的是,encrypt()中有一个输入错误,密钥需要是一个缓冲区。以下是我使用的:

var crypto = require('crypto');

function encrypt(key, data) {
    var cipher = crypto.createCipher('aes256', key);
    var crypted = cipher.update(data, 'utf-8', 'hex');
    crypted += cipher.final('hex');

    return crypted;
}

function decrypt(key, data) {
    var decipher = crypto.createDecipher('aes256', key);
    var decrypted = decipher.update(data, 'hex', 'utf-8');
    decrypted += decipher.final('utf-8');

    return decrypted;
}

var key = new Buffer('85CE6CCF67FBBAA8BB13479C3A6E084D', 'hex');

decrypt(key, encrypt(key, 'hello world'));

// outputs: 'hello world'
 类似资料:
  • 路径是正确的,所以我不知道是怎么回事。此外,如果我查看pdDocument.decrypt(String pw)方法,我会发现:这将解密一个文档。提供此方法仅出于兼容性原因。用户应该使用新的安全层,特别是openProtection方法。 这是什么意思?谁能给出一个如何用PDFBOX正确解密PDF文档的例子吗?

  • 我使用JavaAPI生成128bit密钥。下面是我使用的算法: 我可以通过这些方法轻松地使用secretKey加密和解密消息。由于Java默认使用128bit AES加密,因此它使用SHA1生成原始密钥的哈希,并将哈希的前16字节用作AES中的密钥。然后以十六进制格式转储IV和密文。 但是,它返回一个空字符串。

  • 我正在尝试使用CryptoJS在JavaScript中进行加密,在C#中进行解密。花了很多时间试图让两种技术返回相同的输出。但是,输出是不同的--CryptoJS产生的加密字符串不同于C#产生的加密字符串。我做错了什么?谢谢你的帮助。

  • 问题内容: 我正在尝试遵循Zed Shaw的《困难方法学习Python》指南。我需要在Powershell中使用python。我在中安装了Python 2.7.3 。每当我在Powershell中键入python时,都会出现一个错误,指出“ python”一词无法识别为cmdlet,函数,脚本文件或可操作程序的名称。我也输入了以下内容: 提供了建议的解决方案,但是在Powershell中输入pyt

  • 我有一些问题,解密文本的CryptoJS已经用Java加密。解密应使用AES/CBC/PKCS5Padding完成。加密的字符串是base64编码的,我在尝试解密字符串之前对其进行解码。 这就是Java代码的样子:

  • 下面的hs_err_pid.log是在我的JVM崩溃时生成的。我在试着弄明白是什么引起的。如有任何意见,将不胜感激。谢谢. Java运行时环境检测到一个致命错误: SIGSEGV(0xB)在PC=0x00007F0E74C29E7D,PID=61623,TID=139695284021008 JRE版本:6.0_45-B06 Java VM:Java热点(TM)64位服务器VM(20.45-B01