Fix wrong function name in SKIPIF

This commit is contained in:
Fabien Villepinte 2019-09-27 16:12:13 +02:00 committed by Christoph M. Becker
parent 3204d7e0d1
commit 8c7b8d75db
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";
}