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,471
  • 17
  • 87
  • 173
Marc Rasmussen
  • 18,255
  • 71
  • 189
  • 330

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
  • 205,174
  • 31
  • 336
  • 380