Top "Php-openssl" questions

Using this extension, PHP can use some OpenSSL functions to do direct encryption.

How to encrypt plaintext with AES-256 CBC in PHP using OpenSSL?

I am trying to encrypt sensitive user data like personal messages in my php powered website before entering into the …

php cryptography aes php-openssl
How do I keep my cacert.pem current for security reasons when using curl?

I would like to keep my root certificates current for use with cURL and PHP's internal curl command, however there …

php curl mozilla pem php-openssl
MCrypt rijndael-128 to OpenSSL aes-128-ecb conversion

Since Mcrypt is deprecated, I want to use OpenSSL instead in my code since we already using php 7.0.17 in our …

php encryption cryptography mcrypt php-openssl
openssl_encrypt() randomly fails - IV passed is only ${x} bytes long, cipher expects an IV of precisely 16 bytes

This is the code I use to encrypt/decrypt the data: // Set the method $method = 'AES-128-CBC'; // Set the encryption …

php encryption aes encryption-symmetric php-openssl
mcrypt_encrypt to openssl_encrypt, and OPENSSL_ZERO_PADDING problems

I have this mcrypt_encrypt call, for a given $key, $message and $iv: $string = mcrypt_encrypt(MCRYPT_3DES, $key, $message, …

php openssl mcrypt 3des php-openssl
OpenSSL support disabled in Apache/PHP on Windows

openssl is disabled apache2.4 with php7.1 in phpinfo(); results give me this OpenSSL support disabled (install ext/openssl) i changed …

php windows apache laravel php-openssl
Composer -- > error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed

I can connect to SSL sites, installed composer through command line through HTTPS. Checked the OPENSSL version SSL Version => …

ssl openssl composer-php lamp php-openssl
How to upgrade openssl 0.9.8 to 1.0.2 with mod_ssl in Apache 2.2.9

I am asked to recompile mo_ssl with openssl 1.0.2 in SuseSE11SP3. However, I am a newbie to Suse, but …

apache autoconf suse php-openssl mod-ssl
Replacing mcrypt_encrypt using MCRYPT_RIJNDAEL_256 with openssl_encrypt

As you guys probably know, the extension mcrypt will be deprecated on php 7.1. I use to maintain a "legacy" application …

php mcrypt php-openssl
Use openssl_encrypt to replace Mcrypt for 3DES-ECB encryption

I have an encryption method with mycrypt and the cipher is 3des, mode ecb: mcrypt_module_open ( MCRYPT_3DES, '', …

php encryption php-openssl ecb