PHP best practices for user authentication and password security

后端 未结 8 2364
离开以前
离开以前 2020-11-30 19:10

What are the best current libraries/methods to authenticate users without the use of a CMS or heavy framework?

Responses should include suggestions for anything you

8条回答
  •  我在风中等你
    2020-11-30 19:35

    OpenID is a method to authenticate users based on their existing accounts on common web services such as Yahoo, Google and Flickr.

    Logins to your site are based on a successful login to the remote site.

    You do not need to store sensitive user information or use SSL to secure user logins.

    A current PHP version of the library can be found here.

提交回复
热议问题