PHP authentication

From Rixort Wiki
Revision as of 17:08, 8 April 2023 by Paul (talk | contribs) (Created page with "== Login == * Store hash of password in database * Check password by fetching row based on username, then use password_verify (which is safe against timing attacks)")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Login

  • Store hash of password in database
  • Check password by fetching row based on username, then use password_verify (which is safe against timing attacks)