Add missing semicolons

This commit is contained in:
Artem Chudinov 2015-08-20 03:22:16 +05:00 committed by evilaliv3
parent d0297e1b81
commit 3e2f34ac62

View File

@ -72,7 +72,7 @@ SymmetricallyEncrypted.prototype.decrypt = function (sessionKeyAlgorithm, key) {
sessionKeyAlgorithm === 'aes256')) { sessionKeyAlgorithm === 'aes256')) {
throw new Error('Decryption failed due to missing MDC in combination with modern cipher.') throw new Error('Decryption failed due to missing MDC in combination with modern cipher.')
} }
this.packets.read(decrypted.join('')) this.packets.read(decrypted.join(''));
}; };
SymmetricallyEncrypted.prototype.encrypt = function (algo, key) { SymmetricallyEncrypted.prototype.encrypt = function (algo, key) {