diff options
author | Luca Deri <deri@ntop.org> | 2019-07-01 23:25:48 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2019-07-01 23:25:48 +0200 |
commit | dd9db5d0b77ce4c5d0f5361b8811547c19ab9e4f (patch) | |
tree | 3850535a5852e231dc27c03e3ffabba0f273e614 | |
parent | 9590b18fdd0868c81271b330b766dc28083d1a60 (diff) |
SSL ciphers improvements
-rw-r--r-- | src/lib/ndpi_utils.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 480f4ff18..9be5cb7cb 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -591,6 +591,11 @@ const char* ndpi_cipher2str(u_int32_t cipher) { case 0x0700c0: return("SSL2_DES_192_EDE3_CBC_WITH_MD5"); case 0x080080: return("SSL2_RC4_64_WITH_MD5"); case 0x001301: return("TLS_AES_128_GMC_SHA256"); + case 0x001302: return("TLS_AES_256_GCM_SHA384"); + case 0x001303: return("TLS_CHACHA20_POLY1305_SHA256"); + case 0x001304: return("TLS_AES_128_CCM_SHA256"); + case 0x001305: return("TLS_AES_128_CCM_8_SHA256"); + default: { static char buf[8]; |