EVP_CIPHER_get_block_size
if ((out = OPENSSL_malloc(enc->encValue->length + EVP_CIPHER_get_block_size(cipher))) == NULL
return (ctx == NULL) ? 0 : EVP_CIPHER_get_block_size(ctx->cipher);
int EVP_CIPHER_get_block_size(const EVP_CIPHER *cipher);
#define EVP_CIPHER_block_size EVP_CIPHER_get_block_size
bs = EVP_CIPHER_get_block_size(EVP_CIPHER_CTX_get0_cipher(ds));
blk = EVP_CIPHER_get_block_size(e_ciph);
|| !TEST_int_eq(bs = EVP_CIPHER_get_block_size(cipher), 8)
in_len = EVP_CIPHER_get_block_size(cipher);