diff options
Diffstat (limited to 'funccrypt.c')
-rw-r--r-- | funccrypt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/funccrypt.c b/funccrypt.c index d9a64ce..c80e215 100644 --- a/funccrypt.c +++ b/funccrypt.c @@ -228,8 +228,8 @@ static void printHexBuf(uint8_t *buf, size_t siz, size_t chars_per_line) static void calcAndPrintEntropy(struct crypt_header * const func_crypt_header, size_t const func_body_size) { - printf("entropy of %s function: %lf\n", (func_crypt_header->crypted == 0xFF ? "encrypted" : "unencrypted"), - entropy_from_buffer((uint8_t *)func_crypt_header->func_body, func_body_size)); + printf("entropy of %s function: %f\n", (func_crypt_header->crypted == 0xFF ? "encrypted" : "unencrypted"), + entropy((uint8_t *)func_crypt_header->func_body, func_body_size)); } static void initRandom(void) |