/src/sys/opencrypto/ |
gmac.c | 174 uint8_t keystream[GMAC_BLOCK_LEN], *k, *d; local in function:AES_GMAC_Final 179 aes_enc(&ctx->K, ctx->J, keystream, ctx->rounds); 180 k = keystream; 205 memset(keystream, 0, sizeof(keystream));
|
gmac.c | 174 uint8_t keystream[GMAC_BLOCK_LEN], *k, *d; local in function:AES_GMAC_Final 179 aes_enc(&ctx->K, ctx->J, keystream, ctx->rounds); 180 k = keystream; 205 memset(keystream, 0, sizeof(keystream));
|
cryptosoft_xform.c | 724 u_int8_t keystream[AESCTR_BLOCKSIZE]; local in function:aes_ctr_crypt 733 aes_enc(&ctx->ac_ek, ctx->ac_block, keystream, ctx->ac_nr); 735 blk[i] ^= keystream[i]; 736 explicit_memset(keystream, 0, sizeof(keystream));
|
cryptosoft_xform.c | 724 u_int8_t keystream[AESCTR_BLOCKSIZE]; local in function:aes_ctr_crypt 733 aes_enc(&ctx->ac_ek, ctx->ac_block, keystream, ctx->ac_nr); 735 blk[i] ^= keystream[i]; 736 explicit_memset(keystream, 0, sizeof(keystream));
|