Searched refs:bltmp (Results 1 – 1 of 1) sorted by relevance
/freebsd/crypto/openssl/providers/implementations/rands/ |
H A D | drbg_ctr.c | 56 unsigned char bltmp[16]; member 146 unsigned char bltmp[48] = {0}; in ctr_BCC_init() local 151 bltmp[(AES_BLOCK_SIZE * 1) + 3] = 1; in ctr_BCC_init() 152 bltmp[(AES_BLOCK_SIZE * 2) + 3] = 2; in ctr_BCC_init() 153 return ctr_BCC_block(ctr, ctr->KX, bltmp, num_of_blk * AES_BLOCK_SIZE); in ctr_BCC_init() 171 memcpy(ctr->bltmp + ctr->bltmp_pos, in, left); in ctr_BCC_update() 172 if (!ctr_BCC_blocks(ctr, ctr->bltmp)) in ctr_BCC_update() 188 memcpy(ctr->bltmp + ctr->bltmp_pos, in, inlen); in ctr_BCC_update() 197 memset(ctr->bltmp + ctr->bltmp_pos, 0, 16 - ctr->bltmp_pos); in ctr_BCC_final() 198 if (!ctr_BCC_blocks(ctr, ctr->bltmp)) in ctr_BCC_final() [all …]
|