Merge branch 'PHP-7.4'

* PHP-7.4:
  Fix wrong function name in SKIPIF
This commit is contained in:
Christoph M. Becker 2019-09-27 23:02:51 +02:00
commit ed2c13ab07
3 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
Test interoperability of password_hash('argon2i')
--SKIPIF--
<?php
if (!function_exits('sodium_crypto_pwhash_str_verify')) {
if (!function_exists('sodium_crypto_pwhash_str_verify')) {
echo "skip - No crypto_pwhash_str_verify";
}
if (!in_array('argon2i', password_algos(), true /* strict */)) {

View File

@ -2,7 +2,7 @@
Test interoperability of password_hash('argon2id')
--SKIPIF--
<?php
if (!function_exits('sodium_crypto_pwhash_str_verify')) {
if (!function_exists('sodium_crypto_pwhash_str_verify')) {
echo "skip - No crypto_pwhash_str_verify";
}
if (!in_array('argon2id', password_algos(), true /* strict */)) {

View File

@ -2,7 +2,7 @@
Test interoperability of password_verify()
--SKIPIF--
<?php
if (!function_exits('sodium_crypto_pwhash_str')) {
if (!function_exists('sodium_crypto_pwhash_str')) {
echo "skip - No crypto_pwhash_str_verify";
}