X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/217e8b24b05ec8de6f7a639fa02aa999a066e6e5..476eed1ecf8f3103362011c05a81d7599ff385e6:/src/xbt_sha_unit.c diff --git a/src/xbt_sha_unit.c b/src/xbt_sha_unit.c new file mode 100644 index 0000000000..8229c8c00f --- /dev/null +++ b/src/xbt_sha_unit.c @@ -0,0 +1,58 @@ +/*******************************/ +/* GENERATED FILE, DO NOT EDIT */ +/*******************************/ + +#include +#include "xbt.h" +/*******************************/ +/* GENERATED FILE, DO NOT EDIT */ +/*******************************/ + +# 177 "/home/navarrop/Developments/simgrid/src/xbt/xbt_sha.c" +#include "xbt/hash.h" +#include "portable.h" /* hexa_str */ + +static char *mycmp(const char *p1, const char *p2, size_t n) +{ + int i; + + for (i = 0; i < n; i++) { + if (p1[i] != p2[i]) { + return bprintf("Differs on %d -- Ox%x", i, p1[i]); + } + } + return xbt_strdup(""); +} + +static void test_sha(const char *clear, const char *hashed) +{ + char hash[41]; + xbt_sha(clear, hash); + + xbt_test_add1("==== Test with '%s'", clear); + xbt_test_assert3(!memcmp(hash, hashed, 40), "Wrong sha: %40s!=%40s (%s)", + hash, hashed, mycmp(hash, hashed, 40)); +} + + +XBT_LOG_NEW_DEFAULT_CATEGORY(hash, "Tests of various hash functions "); + + +XBT_TEST_UNIT("sha", test_crypto_sha, "Test of the sha algorithm") +{ + /* Empty string as test vector */ + test_sha("", "da39a3ee5e6b4b0d3255bfef95601890afd80709"); + + /* Some pangram as test vector */ + test_sha("The quick brown fox jumps over the lazy dog", + "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12"); + test_sha("Woven silk pyjamas exchanged for blue quartz", + "da3aff337c810c6470db4dbf0f205c8afc31c442"); + test_sha("Pack my box with five dozen liquor jugs", + "373ba8be29d4d95708bf7cd43038f4e409dcb439"); + +} +/*******************************/ +/* GENERATED FILE, DO NOT EDIT */ +/*******************************/ +