谁能告诉我下面这段JS代码的意思,我知道这是加密方法,但因不懂JS,所以需要哪位好心人帮我解释一下 15

functionsend_login(){varsalt="188f8f92";varpassword="";if(graphic_auth=="false"){pass... function send_login()
{
var salt = "188f8f92";
var password = "";
if (graphic_auth == "false") {
password = document.forms.myform.old_password.value.substr(0,16);
document.forms.myform.old_password.value = ""; // Make sure password never gets sent as clear text
}
else {
password = document.forms.myform.new_password.value.substr(0,16);
document.forms.myform.new_password.value = ""; // Make sure password never gets sent as clear text
}
for (var i = password.length; i < 16; i++) {
password += String.fromCharCode(1);
}
var input = salt + password;
for (var i = input.length; i < 63; i++) {
input += String.fromCharCode(1);
}
if (graphic_auth == "false") {
input += (document.forms.myform.old_username.value == 'user') ? 'U' : String.fromCharCode(1);
}
else {
input += (document.forms.myform.new_username.value == 'user') ? 'U' : String.fromCharCode(1);
}
var hash = hex_md5(input);
var login_hash = salt.concat(hash);
var auth_url = "";
auth_url = "&auth_code=" + document.forms.myform.auth_code.value + "&auth_id=0C931";
var xml_loader = new ajax_xmlhttp("/post_login.xml?hash=" + login_hash + auth_url, xml_ready, xml_timeout);
if (!xml_loader) {
alert ("Your web browser is too old to use this web site. Please upgrade your browser.");
return;
}
xml_loader.retrieve_xml();
}
function send_key(e)
{
// IE or Firefox
if ((e.keyCode == 13) || (e.which == 13)) {
send_login();
展开
 我来答
薄仲Qc
2013-03-25 · TA获得超过3757个赞
知道大有可为答主
回答量:2万
采纳率:0%
帮助的人:4153万
展开全部
当前页面位置写入下面的JavaScript代码中
追问
我需要的是password的加密过程 也就是这个login_hash是怎么算出来的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式