mirror of
https://github.com/php/php-src.git
synced 2025-01-24 04:33:39 +08:00
Merge branch 'PHP-7.4'
* PHP-7.4: Fix wrong function name in SKIPIF
This commit is contained in:
commit
ed2c13ab07
@ -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…
Reference in New Issue
Block a user