summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorliuxueli <[email protected]>2024-03-12 17:11:11 +0800
committerliuxueli <[email protected]>2024-03-13 11:01:49 +0800
commit00218891bdf3833d5f3cd741fa736fe52329b119 (patch)
treed7dfe240f148250650f3a3bc91911c9233f07086 /test
parent484cb7a71951b32e353ba649aa77f636699e8e4e (diff)
Feature: delete api -> ssl_get_ja3_fingerprint, rename ssl_ja3s_info -> ssl_ja_fingerprintv3.1.0
Diffstat (limited to 'test')
-rw-r--r--test/ssl_test_plug.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ssl_test_plug.cpp b/test/ssl_test_plug.cpp
index 9a1d27a..b7b09c7 100644
--- a/test/ssl_test_plug.cpp
+++ b/test/ssl_test_plug.cpp
@@ -106,9 +106,9 @@ extern "C" unsigned char SSL_TEST_PLUG_ENTRY(stSessionInfo *session_info, void *
}
break;
case SSL_SERVER_HELLO:
- if (a_ssl->shello->ja3s.fingerprint_md5 != NULL && a_ssl->shello->ja3s.fingerprint_md5_len > 0)
+ if (a_ssl->shello->ja3s.md5 != NULL && a_ssl->shello->ja3s.md5_len > 0)
{
- cJSON_AddStringToObject(ctx, "ssl_ja3s_hash", a_ssl->shello->ja3s.fingerprint_md5);
+ cJSON_AddStringToObject(ctx, "ssl_ja3s_hash", a_ssl->shello->ja3s.md5);
}
break;
case SSL_CERTIFICATE_DETAIL: