aboutsummaryrefslogtreecommitdiff
path: root/funccrypt.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2024-04-05 14:22:49 +0200
committerToni Uhlig <matzeton@googlemail.com>2024-04-05 14:22:49 +0200
commit04176b2c5e8fbc8279c90e4e84cc6d83c7c17b19 (patch)
tree1398220de5e4482a0c6ad907c0dd9655c904eda0 /funccrypt.c
parent66d1d63f6155b6a2037e1792fd6eda2f17e4be7e (diff)
Some quality-of-life improvments.HEADmaster
* 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.c4
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)