in reply to perl to run a js script
If you can access the fields from the form then you can do the lot in Perl:
use Digest::MD5 qw(md5); sub validate_form { my $password= shift; my $token = shift; return MD5 (MD5 ($password) . $token); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: perl to run a js script
by Zerhash (Scribe) on Apr 13, 2006 at 03:28 UTC | |
by Anonymous Monk on Apr 13, 2006 at 03:50 UTC | |
by Zerhash (Scribe) on Apr 13, 2006 at 18:46 UTC | |
by chibiryuu (Beadle) on Apr 13, 2006 at 20:22 UTC |