aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2020-09-05 19:12:16 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2020-09-05 19:59:33 +0000
commit9fb13aaa9a97433de83e5c4882d2a718e380ca56 (patch)
tree7b416718396c2a64cc9c1e9627e65d432a960187
parentd541071dae52170091b923d56849a6ab9f85a8d4 (diff)
SMB2: add missing cipher type for SMB2_ENCRYPTION_CAPABILITIES
From https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-smb2/16693be7-2b27-4d3b-804b-f605bde5bcdd
-rw-r--r--epan/dissectors/packet-smb2.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/dissectors/packet-smb2.c b/epan/dissectors/packet-smb2.c
index 374420a536..bfa966fef2 100644
--- a/epan/dissectors/packet-smb2.c
+++ b/epan/dissectors/packet-smb2.c
@@ -943,9 +943,13 @@ static const value_string smb2_hash_algorithm_types[] = {
#define SMB2_CIPHER_AES_128_CCM 0x0001
#define SMB2_CIPHER_AES_128_GCM 0x0002
+#define SMB2_CIPHER_AES_256_CCM 0x0003
+#define SMB2_CIPHER_AES_256_GCM 0x0004
static const value_string smb2_cipher_types[] = {
{ SMB2_CIPHER_AES_128_CCM, "AES-128-CCM" },
{ SMB2_CIPHER_AES_128_GCM, "AES-128-GCM" },
+ { SMB2_CIPHER_AES_256_CCM, "AES-256-CCM" },
+ { SMB2_CIPHER_AES_256_GCM, "AES-256-GCM" },
{ 0, NULL }
};