Plain text password over HTTPS

后端 未结 7 611
耶瑟儿~
耶瑟儿~ 2020-12-07 13:19

I\'m currently working on a PHP OpenID provider that will work over HTTPS (hence SSL encrypted).
Is it wrong for me to transmit the password as plain text? HTTP

7条回答
  •  失恋的感觉
    2020-12-07 13:36

    The other posters are correct. Now that you're using SSL to encrypt the transmission of the password, make sure you're hashing it with a good algorithm and salt so it's protected when it's at rest, too...

提交回复
热议问题