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