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
This commit is contained in:
Alexis La Goutte 2020-09-05 19:12:16 +00:00
parent d541071dae
commit 9fb13aaa9a
1 changed files with 4 additions and 0 deletions

View File

@ -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 }
};