0

I just recently found out that password_verify($string, $hash) only works for 5.5 and above.

I am therefore looking for the correct way to do it in 5.4?

halfer
  • 19,824
  • 17
  • 99
  • 186
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364

1 Answers1

3

If you read further through the documentation for the PHP 5.5 password functions, you'll find reference to a userland implementation that can act as a plug-in replacement for PHP >= 5.3.7

Mark Baker
  • 209,507
  • 32
  • 346
  • 385