D
Doug
I noticed that there are many prominant sites out there that do not use
SSL for logins. 2 are www.blackplanet.com and www.blackboard.com
Although blackboard has something like this:
function validate_form(form) {
var passwd_enc = calcMD5(form.password.value);
var final_to_encode = passwd_enc + form.one_time_token.value
form.encoded_pw.value = calcMD5(final_to_encode);
form.password.value = "";
return true;
I'm not really sure what this means... My guess is that the website
hashes the password on the server and checks to see if it matches the
one hashed on the client side.
But my question is, is SSL needed? I am planning to do a site, and now,
I'm not even sure if I should use SSL because it takes some effort to
set it up, and some sites don't use it. Also, a related question: will
implementing logins via SSL slow down the server?
-d
SSL for logins. 2 are www.blackplanet.com and www.blackboard.com
Although blackboard has something like this:
function validate_form(form) {
var passwd_enc = calcMD5(form.password.value);
var final_to_encode = passwd_enc + form.one_time_token.value
form.encoded_pw.value = calcMD5(final_to_encode);
form.password.value = "";
return true;
I'm not really sure what this means... My guess is that the website
hashes the password on the server and checks to see if it matches the
one hashed on the client side.
But my question is, is SSL needed? I am planning to do a site, and now,
I'm not even sure if I should use SSL because it takes some effort to
set it up, and some sites don't use it. Also, a related question: will
implementing logins via SSL slow down the server?
-d