123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #include <tinycrypt/hmac_prng.h>
- #include <tinycrypt/constants.h>
- #include <test_utils.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #define TC_DEBUG_MODE 0
- #ifdef TC_DEBUG_MODE
- void show(const char *label, const uint8_t *s, size_t len)
- {
- unsigned int i;
- printf ("%s = ", label);
- for (i = 0; i < (unsigned int) len; ++i) {
- printf ("%02x", s[i]);
- }
- printf ("\n");
- }
- void printBinaryFile(const uint8_t *s, unsigned int slen)
- {
- FILE *write_ptr;
- write_ptr = fopen("pseudo-random-data.bin","wb");
- fwrite(s, slen, 1, write_ptr);
- }
- #endif
- int main(void)
- {
- uint8_t seed[128];
- struct tc_hmac_prng_struct h;
- unsigned int size = (1 << 19);
- uint8_t random[size];
- unsigned int i;
- unsigned int result = TC_PASS;
- TC_START("Performing HMAC-PRNG tests:");
- TC_PRINT("HMAC-PRNG test#1 (init, reseed, generate):\n");
-
- for (i = 0; i < (unsigned int) sizeof(seed); ++i) {
- seed[i] = i;
- }
-
- uint8_t *personalization = (uint8_t *) "HOSTNAME";
- uint8_t *additional_input = (uint8_t *) "additional input";
- TC_PRINT("HMAC-PRNG test#1 (init):\n");
- if (tc_hmac_prng_init(&h, personalization,
- sizeof(personalization)) == 0) {
- TC_ERROR("HMAC-PRNG initialization failed.\n");
- result = TC_FAIL;
- goto exitTest;
- }
- TC_END_RESULT(result);
- TC_PRINT("HMAC-PRNG test#1 (reseed):\n");
- if (tc_hmac_prng_reseed(&h, seed, sizeof(seed), additional_input,
- sizeof(additional_input)) == 0) {
- TC_ERROR("HMAC-PRNG reseed failed.\n");
- result = TC_FAIL;
- goto exitTest;
- }
- TC_END_RESULT(result);
- TC_PRINT("HMAC-PRNG test#1 (generate):\n");
- if (tc_hmac_prng_generate(random, size, &h) < 1) {
- TC_ERROR("HMAC-PRNG generate failed.\n");
- result = TC_FAIL;
- goto exitTest;
- }
- TC_END_RESULT(result);
- #ifdef TC_DEBUG_MODE
- printBinaryFile(random, size);
- show ("Pseudo-random data", random, size);
- #endif
- TC_PRINT("All HMAC tests succeeded!\n");
- exitTest:
- TC_END_RESULT(result);
- TC_END_REPORT(result);
- }
|