cipher_ctx       5239 ext/openssl/openssl.c 	EVP_CIPHER_CTX cipher_ctx;
cipher_ctx       5274 ext/openssl/openssl.c 	EVP_EncryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_ctx       5277 ext/openssl/openssl.c 		EVP_CIPHER_CTX_set_key_length(&cipher_ctx, (int)password_len);
cipher_ctx       5279 ext/openssl/openssl.c 	EVP_EncryptInit_ex(&cipher_ctx, NULL, NULL, key, (unsigned char *)iv);
cipher_ctx       5281 ext/openssl/openssl.c 		EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0);
cipher_ctx       5284 ext/openssl/openssl.c 		EVP_EncryptUpdate(&cipher_ctx, (unsigned char*)ZSTR_VAL(outbuf), &i, (unsigned char *)data, (int)data_len);
cipher_ctx       5287 ext/openssl/openssl.c 	if (EVP_EncryptFinal(&cipher_ctx, (unsigned char *)ZSTR_VAL(outbuf) + i, &i)) {
cipher_ctx       5310 ext/openssl/openssl.c 	EVP_CIPHER_CTX_cleanup(&cipher_ctx);
cipher_ctx       5322 ext/openssl/openssl.c 	EVP_CIPHER_CTX cipher_ctx;
cipher_ctx       5370 ext/openssl/openssl.c 	EVP_DecryptInit(&cipher_ctx, cipher_type, NULL, NULL);
cipher_ctx       5373 ext/openssl/openssl.c 		EVP_CIPHER_CTX_set_key_length(&cipher_ctx, (int)password_len);
cipher_ctx       5375 ext/openssl/openssl.c 	EVP_DecryptInit_ex(&cipher_ctx, NULL, NULL, key, (unsigned char *)iv);
cipher_ctx       5377 ext/openssl/openssl.c 		EVP_CIPHER_CTX_set_padding(&cipher_ctx, 0);
cipher_ctx       5379 ext/openssl/openssl.c 	EVP_DecryptUpdate(&cipher_ctx, (unsigned char*)ZSTR_VAL(outbuf), &i, (unsigned char *)data, (int)data_len);
cipher_ctx       5381 ext/openssl/openssl.c 	if (EVP_DecryptFinal(&cipher_ctx, (unsigned char *)ZSTR_VAL(outbuf) + i, &i)) {
cipher_ctx       5399 ext/openssl/openssl.c  	EVP_CIPHER_CTX_cleanup(&cipher_ctx);