--TEST-- Test normal operation of password_get_info() with Argon2i and Argon2id --SKIPIF-- --FILE-- --EXPECT-- array(3) { ["algo"]=> string(7) "argon2i" ["algoName"]=> string(7) "argon2i" ["options"]=> array(3) { ["memory_cost"]=> int(65536) ["time_cost"]=> int(3) ["threads"]=> int(1) } } array(3) { ["algo"]=> string(8) "argon2id" ["algoName"]=> string(8) "argon2id" ["options"]=> array(3) { ["memory_cost"]=> int(1024) ["time_cost"]=> int(2) ["threads"]=> int(2) } } OK!