2017-04-21 5 views
1

私は過去3時間インターネットを狩っていましたが、やっと質問をすることにしました。 PHPで暗号化されたNodeJSのbase64テキスト文字列を解読することは可能ですか?NodeJSのPHP mcrypt_decrypt

私はそれを分解するために多くの手順を試しましたが、私は何も動作していないようです。

私の古いPHPメソッドは動作します。

のMcryptを使用してNodeJSで
class EncryptionSystem{ 
    private $iv; 
    public $iv_size; 
    public $key; 

    public function __construct(){ 
     $this->iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_CBC); 
     $this->iv = mcrypt_create_iv($this->iv_size, MCRYPT_RAND); 
     $this->key = "SUPER SECURE STRING"; 
    } 

    public function crypt_data($data = null){ 
     $ciphertext = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $this->key, $data, MCRYPT_MODE_CBC, $this->iv); 
     $ciphertext = $this->iv.$ciphertext; 
     return $ciphertext; 
    } 

    public function decrypt_data($data){ 
     $ciphertext_dec = base64_decode($data); 
     $iv_dec = substr($ciphertext_dec, 0, $this->iv_size); 
     $ciphertext_dec = substr($ciphertext_dec, $this->iv_size); 
     $plaintext_dec = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $this->key, $ciphertext_dec, MCRYPT_MODE_CBC, $iv_dec); 
     return array($iv_dec,$plaintext_dec); 
    } 
} 

私の試み(動作しない)

var post64 = results[0].post; 
var de64 = Buffer.from(post64, 'base64'); 
var desCBC = new MCrypt("rijndael-128","cbc"); 

var iv = de64.slice(0,desCBC.getIvSize()); 
var ciphered = de64.slice(desCBC.getIvSize()); 

console.log("IV:",iv); 
console.log(iv.length); 
console.log("IV SIZE:",desCBC.getIvSize()); 
desCBC.open(new Buffer(password.slice(0,desCBC.getIvSize(),"utf8")),new Buffer(iv,"utf8")); 

var plaintext = desCBC.decrypt(new Buffer(ciphered,"utf8")); 
console.log(plaintext.toString()); 

暗号(も動作しません)

console.log("Base64",post64); 
console.log("RAW",de64.toString("binary")); 
var iv = de64.toString("binary").slice(0,16); 
var ciphered = de64.toString("binary").slice(16); 

console.log("IV:",iv); 
console.log(iv.length); 
console.log("Ciphered:",ciphered); 

var decipher = crypto.createDecipheriv(algorithm,password,new Buffer(iv,'hex')); 

答えて

0

を使用して別の試みは、使用モジュールcrypto-jsをお試しください。それは私のためにうまくいく!

+0

追加のセキュリティのために保存されたデータごとにランダムにジェネレータIVがあります。 IVは、暗号化されたデータの先頭に格納されます。 –