Searched refs:tc_hmac_final (Results 1 – 6 of 6) sorted by relevance
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | hmac_prng.c | 88 (void)tc_hmac_final(prng->key, sizeof(prng->key), &prng->h); in update() 95 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in update() 102 (void)tc_hmac_final(prng->key, sizeof(prng->key), &prng->h); in update() 109 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in update() 197 (void)tc_hmac_final(prng->v, sizeof(prng->v), &prng->h); in tc_hmac_prng_generate()
|
D | hmac.c | 125 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx) in tc_hmac_final() function
|
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
D | hmac.h | 133 int tc_hmac_final(uint8_t *tag, unsigned int taglen, TCHmacState_t ctx);
|
/mcuboot-latest/boot/bootutil/include/bootutil/crypto/ |
D | hmac_sha256.h | 79 rc = tc_hmac_final(tag, taglen, ctx); in bootutil_hmac_sha256_finish()
|
/mcuboot-latest/ext/tinycrypt/tests/ |
D | test_hmac.c | 60 (void)tc_hmac_final(digest, TC_SHA256_DIGEST_SIZE, h); in do_hmac_test()
|
/mcuboot-latest/ext/tinycrypt/documentation/ |
D | tinycrypt.rst | 137 * The tc_hmac_final function, responsible for computing the message tag, 139 clean the TCHmacState_t ctx after calling tc_hmac_final. This should not
|