0

I am trying to find ways to keep my HTML5 / JavaScript / VB website with an IndexedDB database secure, im new to authentication and new to IndexedDB.

How can I keep passwords secure? Is SHA an option? I found this website and they seem to be using a passcode but I am not 100% sure on how to go about it, can anyone explain further? Any tutorial in IndexedDB authentication would also be appriciated

https://groups.google.com/a/chromium.org/forum/#!topic/chromium-html5/2Zsw0UO-MbM

Thank you

4

1 回答 1

2

为什么需要在客户端保存密码?

关于客户端缓存数据库,您不需要对其进行加密。只要用户不注销,就将其保留在那里。如果用户启动注销,则清除数据库。

如果数据太敏感,比如密码,就不要保存在客户端。

于 2013-08-23T00:24:18.597 回答