PDA

View Full Version : php function mcrypt()


ejoly
3-23-02, 08:08 PM
Hi!

Is there someone out there who knows how to make mcrypt() work ? Is the mcrypt library enable? If not, how can I encrypt a string that I'll want to decrypt later.

Thank you for your future help!

ejoly

HalfaBee
3-24-02, 08:13 PM
Nice idea but the module is not compiled.
If you use MYSQL try encode() and decode()
to do the encryption.

Lots of Luck
Halfabee

This function returns the names of all the modules compiled and loaded in the PHP interpreter.

print_r (get_loaded_extensions());

and this is what it said.

Array (
[0] => xslt
[1] => xml
[2] => sysvshm
[3] => sysvsem
[4] => standard
[5] => session
[6] => posix
[7] => pcre
[8] => openssl
[9] => mysql
[10] => mbstring
[11] => gd
[12] => ftp
)

ejoly
3-25-02, 03:49 PM
Thanks for the hint.

I'll be fine with this.

EJ