Re: [PHP] encrypt and decrypt in standard PHP

2001-02-23 Thread Mukul Sabharwal
Hi, You can also use an RC4Encryption / Decryption class made in PHP. http://www.devhome.net/php/tutorials/230101.html it's pretty easy to use. --- Richard Lynch <[EMAIL PROTECTED]> wrote: > You could use popen() to execute http://gnupg.org or > PGP... > > It would be easier to recompile PHP,

Re: [PHP] encrypt and decrypt in standard PHP

2001-02-23 Thread Richard Lynch
You could use popen() to execute http://gnupg.org or PGP... It would be easier to recompile PHP, though, and performance on popen() is going to suck. You *might* be able to compile just the encryption module, and use dl("mcrypt.so") in your PHP script to load it up rather than recompile all of P