]> granicus.if.org Git - php/commitdiff
Add skipif for argon2id in test
authorNikita Popov <nikita.ppv@gmail.com>
Mon, 24 Feb 2020 10:59:46 +0000 (11:59 +0100)
committerNikita Popov <nikita.ppv@gmail.com>
Mon, 24 Feb 2020 11:41:24 +0000 (12:41 +0100)
If argon2i is provided by libargon, then argon2id may not be
available here.

ext/sodium/tests/bug78516.phpt

index 524b23351839fb5c2de875d3a3b1cb65bda9f05e..0347d332730ef89ca3d440fb7a7958ace7706355 100644 (file)
@@ -3,6 +3,7 @@ Bug #78516 (password_hash(): Memory cost is not in allowed range)
 --SKIPIF--
 <?php
 if (!extension_loaded('sodium')) die('skip sodium extension not available');
+if (!defined('PASSWORD_ARGON2ID')) die('skip PASSWORD_ARGON2ID not available');
 ?>
 --FILE--
 <?php