TSG-2967 TFE 使用 JA3 优化 SSL pinning

This commit is contained in:
luwenpeng
2020-08-24 17:52:55 +08:00
parent 1e5b2ceaed
commit 9d15d655ed
8 changed files with 717 additions and 56 deletions

View File

@@ -0,0 +1,10 @@
#pragma once
struct ssl_ja3 {
char *ja3;
char *ja3_hash;
};
struct ssl_ja3 *ssl_ja3_generate_fingerprint(const unsigned char *data, int len);
void ssl_ja3_free(struct ssl_ja3 *fingerprint);