how to secure POST method without using SSL?

前端 未结 5 996
一整个雨季
一整个雨季 2020-12-19 10:37

I\'m developing website where user submit credentials using ajax,php and using POST method and i want to protect login credentials not in plain text but i don\'t want to use

5条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-19 10:43

    You can use a provider like OpenID who will handle the authentication for you. The provider uses SSL to verify the credentials and then you can validate it by using their API, so the user never actually sends credentials to your page.

    Getting started with OpenID

提交回复
热议问题