cipher_type      5172 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5181 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5182 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5187 ext/openssl/openssl.c 	keylen = EVP_CIPHER_key_length(cipher_type);
cipher_type      5196 ext/openssl/openssl.c 	max_iv_len = EVP_CIPHER_iv_length(cipher_type);
cipher_type      5202 ext/openssl/openssl.c 	outlen = data_len + EVP_CIPHER_block_size(cipher_type);
cipher_type      5205 ext/openssl/openssl.c 	EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_type      5251 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5268 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5269 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5284 ext/openssl/openssl.c 	keylen = EVP_CIPHER_key_length(cipher_type);
cipher_type      5293 ext/openssl/openssl.c 	free_iv = php_openssl_validate_iv(&iv, &iv_len, EVP_CIPHER_iv_length(cipher_type) TSRMLS_CC);
cipher_type      5295 ext/openssl/openssl.c 	outlen = data_len + EVP_CIPHER_block_size(cipher_type);
cipher_type      5298 ext/openssl/openssl.c 	EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_type      5334 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5345 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5346 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5351 ext/openssl/openssl.c 	RETURN_LONG(EVP_CIPHER_iv_length(cipher_type));