mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix wrong function name in SKIPIF
This commit is contained in:
parent
3204d7e0d1
commit
8c7b8d75db
3 changed files with 3 additions and 3 deletions
|
@ -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 */)) {
|
||||
|
|
|
@ -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 */)) {
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue