From 48852d97c6a506b3876b139ceb7fde203b9205c2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 21 Mar 2021 19:13:17 +0100 Subject: Added hashing functions --- apps/test.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'apps') diff --git a/apps/test.c b/apps/test.c index d64e224..18d9f8b 100644 --- a/apps/test.c +++ b/apps/test.c @@ -2,6 +2,7 @@ #include #include +#include #include #include #include @@ -35,6 +36,22 @@ TEST(math) EQUALS(pow(0, 0), 1); } +TEST(crypto) +{ + const char *text = "Melvix"; + u32 length = 6; + + EQUALS(crc32(0, text, length), 0x98bb3595); + + const u8 md5_text[16] = { + 0x01, 0xdc, 0xaf, 0x55, 0x2a, 0xe5, 0x7a, 0xf2, + 0xe5, 0xb4, 0x75, 0xac, 0x0f, 0x38, 0x97, 0x9c, + }; + u8 md5_res[16] = { 0 }; + md5(text, length, md5_res); + EQUALS(memcmp(md5_res, md5_text, 16), 0); +} + TEST(conv) { char buf1[1] = { 0 }; @@ -74,6 +91,7 @@ TEST(mem) int main(void) { test_math(); + test_crypto(); test_conv(); test_mem(); -- cgit v1.2.3