If I'm not wrong, some forums like vBulletin when you login, they send
the password in md5 (using javascript). Thats better than sending it
in plain/text. If you want double encrpytion, when the pass reach the
db, you could apply a salt to that md5
like md5("something_".$password);
On the negative ...
the password in md5 (using javascript). Thats better than sending it
in plain/text. If you want double encrpytion, when the pass reach the
db, you could apply a salt to that md5
like md5("something_".$password);
On the negative ...
[ more ]