-
as seen on Server Fault
- Search for 'Server Fault'
A web app I'm trying to install on my ubuntu 10.04 LTS requires mcrypt, and is generating this error: Fatal error: Call to undefined function mcrypt_module_open(). I know this is the same question as this one: Installed php-mcrypt but it doesn't show up in phpinfo(), but I tried several things…
>>> More
-
as seen on Server Fault
- Search for 'Server Fault'
We have an RHEL5 server that I'm trying to install PHP-Mcrypt on and I'm stuck when I tried to run ./configure for mcrypt source files.
I was using this guide: http://atlantatechpro.com/howtos/howtoslinux/howtosmhashmcrypt
When I try to install (./configure) mcrypt, I get this
checking for libmcrypt…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm pretty new at this. Tried to make sense of the manual page for mcrypt at PHP.net when I thought a good tutorial would do a better job. So I searched yet without anything substantial.
I also tried one of the examples of using mcrypt to perform the encryption and decryption with 2 functions, but…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have an encrypted string that was encrypted with Perl Crypt::CBC (Rijndael,cbc). The original plaintext was encrypted with encrypt_hex() method of Crypt::CBC.
$encrypted_string = '52616e646f6d49567b2c89810ceddbe8d182c23ba5f6562a418e318b803a370ea25a6a8cbfe82bc6362f790821dce8441a790a7d25d3d9ea29f86e6685d0796d';
I…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I Encrypt and Decrypt successfully, but when I decrypt the value, appears strange characters at the final of string "???":
The initial $_POST['value'] do not have any blank space or any strange character
Any idea to solve this?
Encrypt with this:
$key='my key';
$td = mcrypt_module_open('tripledes'…
>>> More