Searched refs:max_burst_blocks (Results 1 – 1 of 1) sorted by relevance
183 size_t max_burst_blocks, cipher_blocks; in CMAC_Update() local212 max_burst_blocks = LOCAL_BUF_SIZE / bl; in CMAC_Update()214 if (max_burst_blocks == 0) { in CMAC_Update()226 while (cipher_blocks > max_burst_blocks) { in CMAC_Update()227 if (EVP_Cipher(ctx->cctx, buf, data, max_burst_blocks * bl) <= 0) in CMAC_Update()229 dlen -= max_burst_blocks * bl; in CMAC_Update()230 data += max_burst_blocks * bl; in CMAC_Update()231 cipher_blocks -= max_burst_blocks; in CMAC_Update()
Completed in 4 milliseconds