What should every web developer know about encryption?

后端 未结 11 1366
甜味超标
甜味超标 2021-01-30 01:22

I\'ve just landed a PHP5 gig. I won\'t be handling the parts of the application that involve super sensitive data, but I still know embarrassingly little about security and encr

11条回答
  •  醉酒成梦
    2021-01-30 01:25

    • Understand the difference between encrypting and hashing
    • Understand the reason for salts
    • Understand that HTTP is cleartext
    • Understand what HTTPS is
    • Understand that you will never (almost never) be able to create better hashing or encryption methods than what 3rd party libs and built-in libs already do

提交回复
热议问题