Fix borked spacing in webcrypto.js

This commit is contained in:
Matt Corallo 2014-10-26 03:23:34 -07:00
parent 73f867f7de
commit 3a39602385

View file

@ -62,6 +62,7 @@ window.textsecure.subtle = (function() {
{iv: CryptoJS.enc.Latin1.parse(getString(iv))})
.ciphertext.toString(CryptoJS.enc.Latin1);
};
function decryptAESCBC(ciphertext, key, iv) {
assertIsArrayBuffer(ciphertext);
assertIsArrayBuffer(key);