diff options
author | Luca Deri <deri@ntop.org> | 2021-10-05 16:44:04 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-10-05 16:44:56 +0200 |
commit | 10576eab0a9c80ecf242598b5d193a40cf41b9f3 (patch) | |
tree | f1b19bf1baa04215c9ba7da43e6a6e83e54a6c0e /src/lib/ndpi_utils.c | |
parent | 730c2360bd7c7df7c284f74cd0d56b52a553c03b (diff) |
TLS obsolete protocol is set when TLS < 1.2 (used to be 1.1)
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index f969c6c59..9839d8863 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1697,7 +1697,7 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { return("Self-signed Certificate"); case NDPI_TLS_OBSOLETE_VERSION: - return("Obsolete TLS version (older than 1.1)"); + return("Obsolete TLS version (older than 1.2)"); case NDPI_TLS_WEAK_CIPHER: return("Weak TLS cipher"); |