sync fixes

This commit is contained in:
azivner
2017-11-16 22:18:25 -05:00
parent b2d1ca1c28
commit e53926738c
10 changed files with 26 additions and 27 deletions

View File

@@ -104,10 +104,6 @@ function decryptCbc(key, iv, cipherText) {
return "[protected]";
}
console.log("key:", key);
console.log("iv:", iv);
console.log("cipherText:", cipherText);
const decipher = crypto.createDecipheriv('aes-128-cbc', pad(key), pad(iv));
const cipherTextBuffer = Buffer.from(cipherText, 'base64');