2

我试图在 node.js 和 NodeMCU 之间建立加密通信。经过一番努力,我能够使用 node.js 加密并在 NodeMCU 上解密。反向不起作用。mscdex 的回复有效。因此,为了他人的利益,我修改了 node.js 代码。谢谢。

节点单片机代码:

crypto = require('crypto');
cipher = crypto.encrypt("AES-CBC", "0123456789abcdef", "some clear text data",'0000000000000000')
print(crypto.toHex(cipher))
//95f27285ba29aeae1e48cfc6e821b0a15a0dd6c5a1e636e10c5497c460ed057b
print(crypto.toBase64(cipher))
//lfJyhboprq4eSM/G6CGwoVoN1sWh5jbhDFSXxGDtBXs=

Node.js 工作代码:

var crypto=require('crypto'); //crypto module is required
algorithm = 'aes-128-cbc'; //define algorithm
password = '0123456789abcdef'; //define key
iv='0000000000000000'; // define vector for cbc.. Must be 16 char length
function encrypt(text,opts) {
  if(typeof opts === 'undefined') opts={}
  // if opts is not defined, set empty list
  var cipher = crypto.createCipheriv(algorithm,password,iv)
  // create cipher
  //if setAutoPadding is undefined or set as true set setAutoPadding as true
  if(opts['setAutoPadding'] || typeof opts['setAutoPadding'] !== 'undefined') {
    cipher.setAutoPadding(opts['setAutoPadding']);
    //if encoding is defined, then set it as encoding else set default hex
    if(opts['encoding'] && typeof opts['encoding'] !== 'undefined') {
      var crypted = cipher.update(text,'utf8',opts['encoding'])
      crypted += cipher.final(opts['encoding']);
      return crypted
    } else {
      var crypted = cipher.update(text,'utf8','hex')
      crypted += cipher.final('hex');
      return crypted;
    }
  }

  function decrypt(text,opts) {
    if(typeof opts === 'undefined') opts={}
    // if opts is not defined, set empty list
    var decipher = crypto.createDecipheriv(algorithm,password,iv)
    // create cipher
    //if setAutoPadding is undefined or set as true set setAutoPadding as true
    if(opts['setAutoPadding'] || typeof opts['setAutoPadding'] !== 'undefined') {
      decipher.setAutoPadding(opts['setAutoPadding']);
    }
    var dec; // define a local variable
    //if encoding is defined, then set it as encoding else set default hex
    if(opts['encoding'] && typeof opts['encoding'] !== 'undefined') {
      dec = decipher.update(text,opts['encoding'],'utf8')
    } else {
      dec = decipher.update(text,'hex','utf8')
    }
    dec += decipher.final('utf8');
    return dec;
  }
  var hw = encrypt("some clear text data",{'encoding':'base64'})
  //encrypt with base64 encoding, padding true
  console.log(hw) // prints base64 encoded encrypted string
  console.log('Node.js-base64: ',decrypt(hw,{'encoding':'base64'}))
  // outputs some clear text data
  hw = encrypt("some clear text data")
  // encrypt default encoding hex, defaule padding true
  console.log(hw) // prints hex encoded encrypted string
  console.log('Node.js-hex: ',decrypt(hw)) // outputs some clear text data
  jw='lfJyhboprq4eSM/G6CGwoVoN1sWh5jbhDFSXxGDtBXs='
  // NodeMCU base64 encoded, padding false encrypted string
  console.log('NodeMCU-base64: ',decrypt(jw, { 'setAutoPadding':false,'encoding':'base64'}));
  // outputs some clear text data
  jw='95f27285ba29aeae1e48cfc6e821b0a15a0dd6c5a1e636e10c5497c460ed057b'
  // nodeMCU, hex encoded, padding false encrypted string
  console.log('NodeMCU-hex: ',decrypt(jw,{'setAutoPadding':false}));
  // outputs some clear text data
  console.log("over")

现在再次进行 NodeMCU 端测试:

  cipher=encoder.fromBase64("lfJyhboprq4eSM/G6CGwoYmVZaNMY5xL2kR7V2E1Aho=")
  key="0123456789abcdef"
  print(crypto.decrypt("AES-CBC", key, cipher,'0000000000000000'))
  some clear text data
  cipher=encoder.fromBase64("lfJyhboprq4eSM/G6CGwoVoN1sWh5jbhDFSXxGDtBXs=")
  key="0123456789abcdef"
  print(crypto.decrypt("AES-CBC", key, cipher,'0000000000000000'))
  some clear text data

什么工作?

Node.js 加密在 NodeMCU 上被解密,即使加密的字符串有点不同。

什么不工作?

NodeMCU 的加密字符串没有被 node.js 解密。我收到以下错误:

crypto.js:153
var ret = this._handle.final();

错误:错误:0606506D:数字信封例程:EVP_DecryptFinal_ex:Decipheriv.Cipher.final (crypto.js:153:26) 处的错误最终块长度错误 (/home/pi/rampion/nodejs/test2. js:22:19) 在对象。(/home/pi/rampion/nodejs/test2.js:43:13) 在 Module._compile (module.js:413:34) 在 Object.Module._extensions..js (module.js:422:10) 在Module.load (module.js:357:32) 在 Function.Module._load (module.js:314:12) 在 Function.Module.runMain (module.js:447:10) 在启动时 (node.js:146 :18)

错误是由于 mscdex 在他的回复中强调的原因。

NodeMCU 不使用 PKCS 填充,但节点的加密模块默认使用/预期它,因此在通过解密时调用 .update() 之前需要禁用它 decipher.setAutoPadding(false); calling

4

1 回答 1

4

NodeMCU 不使用 PKCS 填充,但节点的crypto模块默认使用/预期它,因此您需要.update()在解密时调用之前禁用它:

function decrypt(text){
  var decipher = crypto.createDecipheriv(algorithm,password,iv)
  decipher.setAutoPadding(false);
  var dec = decipher.update(text,'hex','utf8')
  dec += decipher.final('utf8');
  return dec;
}

function decryptB(text){
  var decipher = crypto.createDecipheriv(algorithm,password,iv)
  decipher.setAutoPadding(false);
  var dec = decipher.update(text,'base64','utf8')
  dec += decipher.final('utf8');
  return dec;
}

更改后,您将能够解密 NodeMCU 代码中注释的 hex 和 base64 值。

于 2016-04-08T18:08:30.340 回答