diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-04-05 14:22:49 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-04-05 14:22:49 +0200 |
commit | 04176b2c5e8fbc8279c90e4e84cc6d83c7c17b19 (patch) | |
tree | 1398220de5e4482a0c6ad907c0dd9655c904eda0 /funccrypt.c | |
parent | 66d1d63f6155b6a2037e1792fd6eda2f17e4be7e (diff) |
* replaced entropy calculation with a !broken one
* README update
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
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) |