Symmetrically encrypted packet: raise error if MDC is missing for modern cipher.

This commit is contained in:
Thomas Oberndörfer 2015-10-27 17:34:28 +01:00 committed by evilaliv3
parent 9589fa0b52
commit 2ee347154c
2 changed files with 14 additions and 4 deletions

View File

@ -35,7 +35,10 @@ module.exports = {
prefer_hash_algorithm: enums.hash.sha256,
encryption_cipher: enums.symmetric.aes256,
compression: enums.compression.zip,
// use integrity protection for symmetric encryption
integrity_protect: true,
// fail on decrypt if message is not integrity protected
ignore_mdc_error: false,
rsa_blinding: true,
useWebCrypto: true,

View File

@ -31,7 +31,8 @@
module.exports = SymmetricallyEncrypted;
var crypto = require('../crypto'),
enums = require('../enums.js');
enums = require('../enums.js'),
config = require('../config');
/**
* @constructor
@ -42,6 +43,7 @@ function SymmetricallyEncrypted() {
/** Decrypted packets contained within.
* @type {module:packet/packetlist} */
this.packets = null;
this.ignore_mdc_error = config.ignore_mdc_error;
}
SymmetricallyEncrypted.prototype.read = function (bytes) {
@ -62,9 +64,14 @@ SymmetricallyEncrypted.prototype.write = function () {
* algorithm
*/
SymmetricallyEncrypted.prototype.decrypt = function (sessionKeyAlgorithm, key) {
var decrypted = crypto.cfb.decrypt(
sessionKeyAlgorithm, key, this.encrypted, true);
var decrypted = crypto.cfb.decrypt(sessionKeyAlgorithm, key, this.encrypted, true);
// for modern cipher (blocklength != 64 bit, except for Twofish) MDC is required
if (!this.ignore_mdc_error &&
(sessionKeyAlgorithm === 'aes128' ||
sessionKeyAlgorithm === 'aes192' ||
sessionKeyAlgorithm === 'aes256')) {
throw new Error('Decryption failed due to missing MDC in combination with modern cipher.')
}
this.packets.read(decrypted.join(''))
};