in reply to Re^3: need suggestions on Perl modules to support Encrypt Data
in thread need suggestions on Perl modules to support Encrypt Data
For the captchas: store the string and a session ID in a database, and only send the session ID to the user.
Is that necessary?? the captchas used only once and then thrown away. :-)
You could use that scheme for the paths as well, or if you want some light weight encryption, check out RC4. That's very easy to implement, but sadly not very secure. But secure enough to keep the occasional script kid off.
Many thanks, this is the one I need to try on my problems.. :-)
H.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: need suggestions on Perl modules to support Encrypt Data
by moritz (Cardinal) on Oct 29, 2007 at 08:16 UTC | |
|
Re^5: need suggestions on Perl modules to support Encrypt Data
by saberworks (Curate) on Oct 29, 2007 at 07:00 UTC |