Searched refs:minblocks (Results 1 – 4 of 4) sorted by relevance
/third_party/openssl/providers/implementations/ciphers/ |
D | cipher_aes_cbc_hmac_sha1_hw.c | 138 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local 228 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_multi_block_encrypt() 229 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_multi_block_encrypt() 249 minblocks -= MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt() 250 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_multi_block_encrypt()
|
D | cipher_aes_cbc_hmac_sha256_hw.c | 142 unsigned int x4 = 4 * n4x, minblocks, processed = 0; in tls1_multi_block_encrypt() local 236 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_multi_block_encrypt() 237 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_multi_block_encrypt() 257 minblocks -= MAXCHUNKSIZE / 64; in tls1_multi_block_encrypt() 258 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_multi_block_encrypt()
|
/third_party/openssl/crypto/evp/ |
D | e_aes_cbc_hmac_sha1.c | 174 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local 265 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_1_multi_block_encrypt() 266 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_1_multi_block_encrypt() 286 minblocks -= MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt() 287 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_1_multi_block_encrypt()
|
D | e_aes_cbc_hmac_sha256.c | 169 unsigned int frag, last, packlen, i, x4 = 4 * n4x, minblocks, processed = in tls1_1_multi_block_encrypt() local 264 minblocks = ((frag <= last ? frag : last) - (64 - 13)) / 64; in tls1_1_multi_block_encrypt() 265 if (minblocks > MAXCHUNKSIZE / 64) { in tls1_1_multi_block_encrypt() 285 minblocks -= MAXCHUNKSIZE / 64; in tls1_1_multi_block_encrypt() 286 } while (minblocks > MAXCHUNKSIZE / 64); in tls1_1_multi_block_encrypt()
|