0

只是想知道哪个对于安全登录的 POST 数据更安全。我正在使用 SSL 来保护传输中的数据,并使用 phpass 来管理密码服务器端的散列和加盐。

基本上,

任何一个,

<form action="user-man.php" method="POST">
Username:<br>
<input type="text" name="user" size="60"><br>
Password:<br>
<input type="password" name="pass" size="60"><br>
<input type="submit" value="Create user">
</form>

或者

// DEFINE FUNCTION TO REQUEST TO PORTAL PHP FILE HANDLING REQUESTS
function phpRequest( command, username, password )
{
    if( command == "tryLogin" )
    {   
        $.ajax({ 
        type: "POST",
        url: 'open.php',
        data: { request: command, user: username, pass: password },
        success: function( data, textStatus, jqXHR )
        {           
            alert(data);
        }
        }); 
    }
}
4

1 回答 1

2

安全性是一样的。无论您使用 JavaScript 还是 HTML 表单都没有区别,相同类型的请求会发送到服务器。

一切都使用 HTTPS。

于 2013-01-12T07:50:39.773 回答