Re: Encoding / decoding strings

2007-01-06 Thread Steven D'Aprano
On Fri, 05 Jan 2007 09:39:17 -0800, [EMAIL PROTECTED] wrote: > Basically, what I am trying to do is display all comments by a > specified user on the website. As the only thing which has =always= > been used to identify users which never changes is their e-mail > addresses, What are you talking

Re: Encoding / decoding strings

2007-01-05 Thread Paul Rubin
"[EMAIL PROTECTED]" <[EMAIL PROTECTED]> writes: > Basically, what I am trying to do is display all comments by a > specified user on the website. As the only thing which has =always= > been used to identify users which never changes is their e-mail > addresses, this is the only thing which I can us

Re: Encoding / decoding strings

2007-01-05 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > Basically, what I am trying to do is display all comments by a > specified user on the website. As the only thing which has =always= > been used to identify users which never changes is their e-mail > addresses, this is the only thing which I can

Re: Encoding / decoding strings

2007-01-05 Thread [EMAIL PROTECTED]
Marc 'BlackJack' Rintsch wrote: > In <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] wrote: > > > Basically, I want to encode an email address so that it looks something > > like 8d2e23c0a835598510c88a758c6b215a - this way the user does not know > > the email address they are looking at. They are public-

Re: Encoding / decoding strings

2007-01-05 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, [EMAIL PROTECTED] wrote: > Basically, I want to encode an email address so that it looks something > like 8d2e23c0a835598510c88a758c6b215a - this way the user does not know > the email address they are looking at. They are public-facing views and > they are to get info abou

Re: Encoding / decoding strings

2007-01-05 Thread [EMAIL PROTECTED]
Basically, I want to encode an email address so that it looks something like 8d2e23c0a835598510c88a758c6b215a - this way the user does not know the email address they are looking at. They are public-facing views and they are to get info about other users, therefore anonymity is important. Any sugg

Re: Encoding / decoding strings

2007-01-05 Thread Diez B. Roggisch
[EMAIL PROTECTED] wrote: > Hey Everyone, > > Was just wondering if anyone here could help me. I want to encode (and > subsequently decode) email addresses to use in URLs. I believe that > this can be done using MD5. Are you by chance after a way to create URLs that contain an email which the ser

Re: Encoding / decoding strings

2007-01-05 Thread Jon Clements
[EMAIL PROTECTED] wrote: > Hey Everyone, > > Was just wondering if anyone here could help me. I want to encode (and > subsequently decode) email addresses to use in URLs. I believe that > this can be done using MD5. > > I can find documentation for encoding the strings, but not decoding > them. W

Encoding / decoding strings

2007-01-05 Thread [EMAIL PROTECTED]
Hey Everyone, Was just wondering if anyone here could help me. I want to encode (and subsequently decode) email addresses to use in URLs. I believe that this can be done using MD5. I can find documentation for encoding the strings, but not decoding them. What should I do to encode =and= decode st