Skip to content

Commit

Permalink
Removed type redefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaderi committed Dec 23, 2023
1 parent caa223d commit f2be972
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/third_party/include/ndpi_sha256.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit f2be972

Please sign in to comment.