最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - FrontEnd or BackEnd encrypting? - Stack Overflow

programmeradmin1浏览0评论

I'm building a system requiring a password. My question is, should I encrypt it frontend or backend? If I do it frontend (with javascript probably) then everyone could crack the encryption = big security issue. But if I do it backend, then the plain password has to be sent somehow which also will create a security hole. So my question is how I should do this properly?

I'm building a system requiring a password. My question is, should I encrypt it frontend or backend? If I do it frontend (with javascript probably) then everyone could crack the encryption = big security issue. But if I do it backend, then the plain password has to be sent somehow which also will create a security hole. So my question is how I should do this properly?

Share Improve this question asked Jan 1, 2014 at 14:32 user3054852user3054852 1891 silver badge12 bronze badges 3
  • 3 "how I should do this properly?" - use SSL ? – Mitch Wheat Commented Jan 1, 2014 at 14:33
  • 4 use HTTPS/SSL protocol – StarsSky Commented Jan 1, 2014 at 14:33
  • Oh, my.. Been working all night, too tired to even think about that xD Thanks alot! – user3054852 Commented Jan 1, 2014 at 14:56
Add a ment  | 

2 Answers 2

Reset to default 7

You should never try to create your own security protocols or throw around your own crypto. It is remended to use the best standards available. To achieve what you're trying to do, I'd use a standard HTTPS/SSL protocol. And yes, as 'damphat' mentions, salting passwords is crucial, along with latest hash functions.

Your encryption should be on the server. As long as you are sending the plain text password over HTTPS, the password is safe from everyone except the NSA :)

发布评论

评论列表(0)

  1. 暂无评论