使用jqTouch和HTML5保护iPhone WebApp

时间:2011-11-28 21:07:34

标签: jquery iphone html5 jqtouch web-applications

我在免费的虚拟主机提供商上运行了一个小的WebApp(只有一个包含200行代码的html文件)。我希望对WebApp的访问权限有限,因此不是每个人都可以看到该页面。我还只需要一个有密码的用户登录。

是否可以轻松地在Javascript,JqTouch和html中集成用户登录?

3 个答案:

答案 0 :(得分:2)

您可以加密有意义的来源,并且在初始启动时只需要一个文本字段,要求用户输入密钥:

http://crypto.stanford.edu/sjcl/

http://bitwiseshiftleft.github.com/sjcl/demo/

这是一个示例页面,可以帮助您入门:http://robotwoods.com/dev/so_crypt.html

这是代码(我知道链接是可疑的):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<head>
<title>Encrypted Site</title>
<style>
body {font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;}
#wrap {position:relative; width:500px; height:550px; margin-left:auto; margin-right:auto;}
#pwd {position:absolute; width:120px; top:100px; padding-left:170px; height:50px; margin-left:auto; margin-right:auto;}

</style>
<script type="text/javascript" src="http://crypto.stanford.edu/sjcl/sjcl.js"></script>
<script>
//--------------HERE IS THE ENCRYPTED CONTENT
kt="{iv:\"oMnhqxC9DhBgaZjHvm354g\",salt:\"gxZ08m1I5DY\",ct:\"TIKmKXfzkWaxBJ0nbyMVYo9/tvmlIeuIE4Aknt7j7H4t+bk\"}";
</script>
</head>
<body><div id="wrap"><div id="main">
    <div id="pwd">S.O. Username:<input id='pass' type='text'/><button onclick="login_test()">Login</button></div>
</div></div></body>

<script>
function login_test(){
    try{document.getElementById('main').innerHTML=sjcl.decrypt(document.getElementById('pass').value,kt);}
    catch(err){document.getElementById('main').innerHTML+='<div id=\"error\" style=\"color:#F00\"><br/>This is not for you</div>';} 
}
</script>
</html>

答案 1 :(得分:2)

只使用Javascript即可,但您不应该这样做:每个人都可以看到它。 请考虑使用服务器端语言(例如PHP,ASP或其他)。

答案 2 :(得分:1)

如果它只是一页,那么没有。即使你把东西隐藏在登录后面(这是可行的),任何人都可以通过查看html代码来弄清楚发生了什么,因为javascript,jqtouch和html都是客户端。

您需要在服务器端实现其他功能,以进行身份​​验证,然后传送内容。

如果您只关心显示登录但并不真正需要安全性,那么您可以实现登录等,以便进行演示。