admin管理员组文章数量:1344172
I have user sign in form. It has about 10 inputs. I want to save that user, random generate password and hash and salt it and save it. How to achieve that? I couldn't find any good tutorial for using Crypto.js in meteor. I always stumble upon account-password package.
I have user sign in form. It has about 10 inputs. I want to save that user, random generate password and hash and salt it and save it. How to achieve that? I couldn't find any good tutorial for using Crypto.js in meteor. I always stumble upon account-password package.
Share Improve this question asked Feb 21, 2015 at 16:49 FlipperFlipper 1,1071 gold badge12 silver badges35 bronze badges 1- Accounts-password does jsut that, but instead of hash and creating salt it uses bcrypt which is way safer according to this codahale./how-to-safely-store-a-password – sdooo Commented Feb 21, 2015 at 17:13
1 Answer
Reset to default 14accounts-password
actually takes care of this for you. I wish the documentation of the implementation details was better, but you can see an overview here.
Passwords are verified by examining hashes, so only a hashed version of the passed from the client to the server which is then run through bcrypt.
client: password --> network: sha256(password) --> server: bcrypt(sha256(password))
What's nice about this implementation is: (a) the server never sees or stores password-equivalent data, (b) it's all done for you just by installing the package.
Also see this hackpad for more details.
本文标签: javascriptEncryption in MeteorStack Overflow
版权声明:本文标题:javascript - Encryption in Meteor - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743714041a2526428.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论