RE: [PHP] encrypt and decrypt in php

2006-03-07 Thread Shaunak Kashyap
When you say that it is not working properly, what exactly is the problem? Are you getting any error messages? What version of PHP are you using? What platform is PHP installed on? The reason I ask those questions is that http://us2.php.net/manual/en/ref.mcrypt.php states that the mcrypt functions

Re: [PHP] encrypt and decrypt

2004-11-03 Thread Jason Wong
On Wednesday 03 November 2004 14:50, Merlin wrote: > Here is a short explanation: > The system will send out emails to customers with a link where they can > change their details. To identify the record, the link has to carry the > client id. But if it is obvious that this is the id, manipulation

Re: [PHP] encrypt and decrypt

2004-11-03 Thread Merlin
Richard Davey wrote: Hello Merlin, Wednesday, November 3, 2004, 2:50:48 PM, you wrote: M> The system will send out emails to customers with a link where they can change M> their details. To identify the record, the link has to carry the client id. But M> if it is obvious that this is the id, manipu

Re: [PHP] encrypt and decrypt

2004-11-03 Thread Merlin
Jason Wong wrote: On Wednesday 03 November 2004 11:47, Merlin wrote: Hi, I tryed the Pear package, and it encryptes well. However the encrypten is not URL friendly. My goal is to encrypt a 8 digit ID into a URL. Can this be that hard?`I bet there are hundreds of people wanting to make a similar enc

Re: [PHP] encrypt and decrypt

2004-11-03 Thread Jason Wong
On Wednesday 03 November 2004 11:47, Merlin wrote: > Hi, I tryed the Pear package, and it encryptes well. However the encrypten > is not URL friendly. My goal is to encrypt a 8 digit ID into a URL. Can > this be that hard?`I bet there are hundreds of people wanting to make a > similar encrypten wit

Re: [PHP] encrypt and decrypt functions kaput

2001-11-20 Thread David Robley
On Wed, 21 Nov 2001 10:49, Michael J. Seely wrote: > HI Folks, > > I'm trying to use the encrypt and decrypt functions in PHP3. I get a > fatal error "Call to unsupported or undefined function encrypt() ... > >Is this a configuration issue or I'm I doing something wrong? > > Thanks If you ar

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

Re: [PHP] encrypt() and decrypt()

2001-01-09 Thread Stefan Scherf
"Robert Collins" <[EMAIL PROTECTED]> wrote: > There was an encrypt() and a decrypt() function available in php3 was this > removed from php4? if not how can I use it? I cant seem to find any info on > php.net on usage and I get an undefigned function error when I try to use > it. try http://www.p