Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
php-7.4.33 /
ext /
sodium /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
bug78114.phpt
355
B
-rw-rw-r--
2022-10-31 11:36
bug78516.phpt
725
B
-rw-rw-r--
2022-10-31 11:36
crypto_aead.phpt
4.23
KB
-rw-rw-r--
2022-10-31 11:36
crypto_auth.phpt
1.09
KB
-rw-rw-r--
2022-10-31 11:36
crypto_box.phpt
5.09
KB
-rw-rw-r--
2022-10-31 11:36
crypto_generichash.phpt
2.7
KB
-rw-rw-r--
2022-10-31 11:36
crypto_hex.phpt
426
B
-rw-rw-r--
2022-10-31 11:36
crypto_kdf.phpt
1.48
KB
-rw-rw-r--
2022-10-31 11:36
crypto_kx.phpt
1.58
KB
-rw-rw-r--
2022-10-31 11:36
crypto_scalarmult.phpt
582
B
-rw-rw-r--
2022-10-31 11:36
crypto_secretbox.phpt
606
B
-rw-rw-r--
2022-10-31 11:36
crypto_secretstream.phpt
1.98
KB
-rw-rw-r--
2022-10-31 11:36
crypto_shorthash.phpt
586
B
-rw-rw-r--
2022-10-31 11:36
crypto_sign.phpt
2.88
KB
-rw-rw-r--
2022-10-31 11:36
crypto_stream.phpt
1.16
KB
-rw-rw-r--
2022-10-31 11:36
exception_trace_without_args.phpt
421
B
-rw-rw-r--
2022-10-31 11:36
inc_add.phpt
909
B
-rw-rw-r--
2022-10-31 11:36
installed.phpt
467
B
-rw-rw-r--
2022-10-31 11:36
php_password_hash_argon2i.phpt
2.08
KB
-rw-rw-r--
2022-10-31 11:36
php_password_hash_argon2id.phpt
2.09
KB
-rw-rw-r--
2022-10-31 11:36
php_password_verify.phpt
2.36
KB
-rw-rw-r--
2022-10-31 11:36
pwhash_argon2i.phpt
1.52
KB
-rw-rw-r--
2022-10-31 11:36
pwhash_scrypt.phpt
1.09
KB
-rw-rw-r--
2022-10-31 11:36
sodium_error_001.phpt
639
B
-rw-rw-r--
2022-10-31 11:36
utils.phpt
3.45
KB
-rw-rw-r--
2022-10-31 11:36
version.phpt
283
B
-rw-rw-r--
2022-10-31 11:36
Save
Rename
--TEST-- Test interoperability of password_hash('argon2i') --SKIPIF-- <?php if (!function_exists('sodium_crypto_pwhash_str_verify')) { echo "skip - No crypto_pwhash_str_verify"; } if (!in_array('argon2i', password_algos(), true /* strict */)) { echo "skip - No argon2i support in password_hash()"; } --FILE-- <?php echo 'Argon2 provider: '; var_dump(PASSWORD_ARGON2_PROVIDER); foreach([1, 2, 4] as $mem) { foreach([1, 2, 4] as $time) { $opts = [ 'memory_cost' => PASSWORD_ARGON2_DEFAULT_MEMORY_COST * $mem, 'time_cost' => PASSWORD_ARGON2_DEFAULT_TIME_COST * $time, 'threads' => PASSWORD_ARGON2_DEFAULT_THREADS, ]; $password = random_bytes(32); echo "Using password: "; var_dump(base64_encode($password)); $hash = password_hash($password, 'argon2i', $opts); echo "Hash: "; var_dump($hash); var_dump(sodium_crypto_pwhash_str_verify($hash, $password)); // And verify that incorrect passwords fail. $password[0] = chr(ord($password[0]) ^ 1); var_dump(sodium_crypto_pwhash_str_verify($hash, $password)); } } --EXPECTF-- Argon2 provider: string(%d) "%s" Using password: string(44) "%s" Hash: string(96) "$argon2i$v=19$m=65536,t=4,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(96) "$argon2i$v=19$m=65536,t=8,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(97) "$argon2i$v=19$m=65536,t=16,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(97) "$argon2i$v=19$m=131072,t=4,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(97) "$argon2i$v=19$m=131072,t=8,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(98) "$argon2i$v=19$m=131072,t=16,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(97) "$argon2i$v=19$m=262144,t=4,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(97) "$argon2i$v=19$m=262144,t=8,p=1$%s$%s" bool(true) bool(false) Using password: string(44) "%s" Hash: string(98) "$argon2i$v=19$m=262144,t=16,p=1$%s$%s" bool(true) bool(false)