[PHP] Encrypt data to base for authentication...

2003-03-18 Thread Scott Fletcher
Hi Fellas, I am trying to figure out how to encrypt the data using the base only. The webserver use the base authentication. I have been searching the PHP manual and I only saw base64_encode() but it is not the right algorithm. Does anyone know the php function for the Base encryption?

[PHP] encrypt data with pgp

2003-01-21 Thread ermelir
Hello everyody, I search to encode a string with a strong alogrythm. I choose pgp my desktop is a windows computer; I have found a function but I can't use it because on windows, pgp cant encrypt on commandline. have you found something for windows station? your help will be helpfull.

Re: [PHP] encrypt data with pgp

2003-01-21 Thread David T-G
ermelir -- [You know, this message really has nothing to do with converting ASP to PHP...] ...and then ermelir said... % % Hello everyody, Hi! % % I search to encode a string with a strong alogrythm. I choose pgp my % desktop is a windows computer; I have found a function but I can't use

Fw: [PHP] encrypt data with pgp

2003-01-21 Thread Ermelir
just for explain me another better: if I had post in this mailing list, it's just because I want to find another way to use this function under windows system function pgp_encrypt($keyring_location, $public_key_id, $plain_text) { $key_id = EscapeShellArg($public_key_id);

Re: [PHP] Encrypt data...

2002-09-26 Thread Scott Fletcher
Aww! Neat! That look better than the one I came up with. Thanks for your time on this one. Thanks, FletchSOD Tom Rogers [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, Thursday, September 26, 2002, 4:45:04 AM, you wrote: SF How do I encrypt the data

[PHP] Encrypt data...

2002-09-25 Thread Scott Fletcher
How do I encrypt the data and decrypt it back using PHP? I do know that hte random number can not be used becuase it will make it impossible to decrypt it. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Encrypt data...

2002-09-25 Thread Mike Dunlop
http://php.net/mcrypt How do I encrypt the data and decrypt it back using PHP? I do know that hte random number can not be used becuase it will make it impossible to decrypt it. Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Encrypt data...

2002-09-25 Thread Scott Fletcher
Well, I meant a script. I do have mcrypt but I don't feel comfortable with that becuase if I upgrade PHP or Mcrypt, then it could affected the encrypt data. Mike Dunlop [EMAIL PROTECTED] wrote in message news:a05100304b9b7b58c8d3b@[65.106.126.146]... http://php.net/mcrypt How do I encrypt

Re: [PHP] Encrypt data...

2002-09-25 Thread Tom Rogers
Hi, Thursday, September 26, 2002, 4:45:04 AM, you wrote: SF How do I encrypt the data and decrypt it back using PHP? I do know that hte SF random number can not be used becuase it will make it impossible to decrypt SF it. SF Thanks! Here is a simple class for encoding and decoding: class