in reply to Re: Using MD5 and the theory behind it
in thread Using MD5 and the theory behind it
Why to do this kind of terrible thing?
On my site, I just generate a random session ID and set that as a cookie.
On server-side a make association of this session id with user's login name and a 'last access' timestamp.
When the user returns, I just check the validity of session Id by following the association.
This has several advatages:
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Using MD5 and the theory behind it
by eg (Friar) on Jan 10, 2001 at 23:54 UTC | |
Re: Re: Re: Using MD5 and the theory behind it
by rpc (Monk) on Jan 11, 2001 at 04:11 UTC | |
by gildir (Pilgrim) on Jan 11, 2001 at 14:02 UTC |