1--TEST--
2Test normal operation of password_hash() with argon2
3--SKIPIF--
4<?php
5if (!defined('PASSWORD_ARGON2I')) die('skip password_hash not built with Argon2');
6--FILE--
7<?php
8
9$password = "the password for testing 12345!";
10
11$hash = password_hash($password, PASSWORD_ARGON2I);
12var_dump(password_verify($password, $hash));
13
14echo "OK!";
15?>
16--EXPECT--
17bool(true)
18OK!
19