Searched refs:V (Results 1 – 3 of 3) sorted by relevance
/mcuboot-latest/ext/tinycrypt/lib/source/ |
D | ctr_prng.c | 87 arrInc(ctx->V, sizeof ctx->V); in tc_ctr_prng_update() 93 (void)tc_aes_encrypt(output_block, ctx->V, &ctx->key); in tc_ctr_prng_update() 113 memcpy(ctx->V, &(temp[TC_AES_KEY_SIZE]), TC_AES_BLOCK_SIZE); in tc_ctr_prng_update() 151 memset(ctx->V, 0x00, sizeof ctx->V); in tc_ctr_prng_init() 244 arrInc(ctx->V, sizeof ctx->V); in tc_ctr_prng_generate() 247 (void)tc_aes_encrypt(output_block, ctx->V, &ctx->key); in tc_ctr_prng_generate() 276 memset(ctx->V, 0x00, sizeof ctx->V); in tc_ctr_prng_uninstantiate()
|
/mcuboot-latest/ext/tinycrypt/lib/include/tinycrypt/ |
D | ctr_prng.h | 72 uint8_t V[TC_AES_BLOCK_SIZE]; member
|
/mcuboot-latest/ext/tinycrypt/tests/ |
D | test_ctr_prng.c | 372 if (ctx.V[i] != expectedV[i]) { in test_reseed() 394 if (ctx.V[i] != expectedV[i]) { in test_reseed() 419 for (i = 0U; i < sizeof ctx.V; i++) { in test_uninstantiate() 420 if (0U != ctx.V[i]) { in test_uninstantiate()
|