cipher_type      5238 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5248 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5249 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5256 ext/openssl/openssl.c 	keylen = EVP_CIPHER_key_length(cipher_type);
cipher_type      5265 ext/openssl/openssl.c 	max_iv_len = EVP_CIPHER_iv_length(cipher_type);
cipher_type      5271 ext/openssl/openssl.c 	outlen = (int)data_len + EVP_CIPHER_block_size(cipher_type);
cipher_type      5274 ext/openssl/openssl.c 	EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_type      5321 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5340 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5341 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5356 ext/openssl/openssl.c 	keylen = EVP_CIPHER_key_length(cipher_type);
cipher_type      5365 ext/openssl/openssl.c 	free_iv = php_openssl_validate_iv(&iv, &iv_len, EVP_CIPHER_iv_length(cipher_type));
cipher_type      5367 ext/openssl/openssl.c 	outlen = (int)data_len + EVP_CIPHER_block_size(cipher_type);
cipher_type      5370 ext/openssl/openssl.c 	EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_type      5408 ext/openssl/openssl.c 	const EVP_CIPHER *cipher_type;
cipher_type      5419 ext/openssl/openssl.c 	cipher_type = EVP_get_cipherbyname(method);
cipher_type      5420 ext/openssl/openssl.c 	if (!cipher_type) {
cipher_type      5425 ext/openssl/openssl.c 	RETURN_LONG(EVP_CIPHER_iv_length(cipher_type));