Test normal operation of password_hash() with argon2
--SKIPIF--
<?php
-if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
+if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
--FILE--
<?php
Test error operation of password_hash() with argon2
--SKIPIF--
<?php
-if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
+if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_hash not built with Argon2');
?>
--FILE--
<?php
Test normal operation of password_needs_rehash() with argon2
--SKIPIF--
<?php
-if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
+if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_needs_rehash not built with Argon2');
?>
--FILE--
<?php
Test normal operation of password_verify() with argon2
--SKIPIF--
<?php
-if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_get_info not built with Argon2');
+if (!defined('PASSWORD_ARGON2I')) die('Skipped: password_verify not built with Argon2');
?>
--FILE--
<?php