2016-04-08 2 views
1

Я пытался настроить зашифрованную связь между node.js и NodeMCU. После некоторой борьбы я смог зашифровать с помощью node.js и расшифровать его на NodeMCU. Обратное не работает. Ответ mscdex сработал. Соответственно, я модифицировал код node.js для других. Благодарю.NodeMCU node.js crypto

код NodeMCU:

crypto = require('crypto'); 
cipher = crypto.encrypt("AES-CBC", "abcdef", "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 = 'abcdef'; //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="abcdef" 
    print(crypto.decrypt("AES-CBC", key, cipher,'0000000000000000')) 
    some clear text data 
    cipher=encoder.fromBase64("lfJyhboprq4eSM/G6CGwoVoN1sWh5jbhDFSXxGDtBXs=") 
    key="abcdef" 
    print(crypto.decrypt("AES-CBC", key, cipher,'0000000000000000')) 
    some clear text data 

Что работает?

Шифрование Node.js расшифровывается на NodeMCU, хотя зашифрованная строка немного отличается.

Что не работает?

Зашифрованная строка NodeMCU не расшифровывается узлом.js. Я получаю следующее сообщение об ошибке:

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

Error: error:0606506D:digital envelope routines:EVP_DecryptFinal_ex:wrong final block length at Error (native) at Decipheriv.Cipher.final (crypto.js:153:26) at decrypt (/home/pi/rampion/nodejs/test2.js:22:19) at Object. (/home/pi/rampion/nodejs/test2.js:43:13) at Module._compile (module.js:413:34) at Object.Module._extensions..js (module.js:422:10) at Module.load (module.js:357:32) at Function.Module._load (module.js:314:12) at Function.Module.runMain (module.js:447:10) at startup (node.js:146:18)

ошибка была по той причине, выделенной на MSCDEX в своем ответе.

NodeMCU does not utilize PKCS padding but node's crypto module does use/expect it by default, so you need to disable it before calling .update() when decrypting by decipher.setAutoPadding(false); calling

ответ

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; 
} 

После этого изменения, вы будете быть в состоянии расшифровать закомментированные шестнадцатеричные значения и значения base64 в коде NodeMCU.

+0

Это сработало. благодаря –

Смежные вопросы