From 8d08d0bd1ab796e617378733bdb79d403b6868c2 Mon Sep 17 00:00:00 2001 From: Christian Zangl Date: Wed, 12 Nov 2014 16:47:32 +0100 Subject: [PATCH] fix symkey version --- src/packet/sym_encrypted_session_key.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/packet/sym_encrypted_session_key.js b/src/packet/sym_encrypted_session_key.js index 6e521941..1557d631 100644 --- a/src/packet/sym_encrypted_session_key.js +++ b/src/packet/sym_encrypted_session_key.js @@ -46,6 +46,7 @@ module.exports = SymEncryptedSessionKey; */ function SymEncryptedSessionKey() { this.tag = enums.packet.symEncryptedSessionKey; + this.version = 4; this.sessionKeyEncryptionAlgorithm = null; this.sessionKeyAlgorithm = 'aes256'; this.encrypted = null;