From 04176b2c5e8fbc8279c90e4e84cc6d83c7c17b19 Mon Sep 17 00:00:00 2001 From: Toni Uhlig Date: Fri, 5 Apr 2024 14:22:49 +0200 Subject: Some quality-of-life improvments. * replaced entropy calculation with a !broken one * README update Signed-off-by: Toni Uhlig --- funccrypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'funccrypt.c') 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) -- cgit v1.2.3