diff options
-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 |