diff options
author | Luca Deri <deri@ntop.org> | 2023-12-23 09:16:35 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2023-12-23 09:16:35 +0100 |
commit | f2be9722242880fb9bff3be31d59dae6a25a8690 (patch) | |
tree | 7bf1df60703180e0c5e4d469f44f0d9692134510 /src/lib/third_party | |
parent | caa223d2baefb3ffb0bfcec6230791e0e39ef23d (diff) |
Removed type redefinition
Diffstat (limited to 'src/lib/third_party')
-rw-r--r-- | src/lib/third_party/include/ndpi_sha256.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/third_party/include/ndpi_sha256.h b/src/lib/third_party/include/ndpi_sha256.h index 730c2b6b3..83a424faa 100644 --- a/src/lib/third_party/include/ndpi_sha256.h +++ b/src/lib/third_party/include/ndpi_sha256.h @@ -28,7 +28,7 @@ typedef struct { /*********************** FUNCTION DECLARATIONS **********************/ void ndpi_sha256_init(SHA256_CTX *ctx); -void ndpi_sha256_update(SHA256_CTX *ctx, const BYTE data[], size_t len); -void ndpi_sha256_final(SHA256_CTX *ctx, BYTE hash[]); +void ndpi_sha256_update(SHA256_CTX *ctx, const u_int8_t data[], size_t len); +void ndpi_sha256_final(SHA256_CTX *ctx, u_int8_t hash[]); #endif // SHA256_H |