Searched refs:argon2i (Results 1 – 9 of 9) sorted by relevance
/PHP-7.4/ext/sodium/tests/ |
H A D | php_password_hash_argon2i.phpt | 2 Test interoperability of password_hash('argon2i') 9 echo "skip - No argon2i support in password_hash()"; 27 $hash = password_hash($password, 'argon2i', $opts); 39 Hash: string(96) "$argon2i$v=19$m=65536,t=4,p=1$%s$%s" 43 Hash: string(96) "$argon2i$v=19$m=65536,t=8,p=1$%s$%s" 47 Hash: string(97) "$argon2i$v=19$m=65536,t=16,p=1$%s$%s" 51 Hash: string(97) "$argon2i$v=19$m=131072,t=4,p=1$%s$%s" 55 Hash: string(97) "$argon2i$v=19$m=131072,t=8,p=1$%s$%s" 59 Hash: string(98) "$argon2i$v=19$m=131072,t=16,p=1$%s$%s" 63 Hash: string(97) "$argon2i$v=19$m=262144,t=4,p=1$%s$%s" [all …]
|
H A D | pwhash_argon2i.phpt | 2 Check for libsodium argon2i 5 if (!defined('SODIUM_CRYPTO_PWHASH_SALTBYTES')) print "skip libsodium without argon2i"; ?> 16 $testHash = '$argon2i$v=19$m=4096,t=3,p=1$MzE4ODFiZWFlMjAzOWUAAA$FWUV6tsyJ32qThiLi1cCsLIbf3dIOG/RwX… 20 $testHash = '$argon2i$v=19$m=4096,t=0,p=1$c29tZXNhbHQAAAAAAAAAAA$JTBozgKQiCn5yKAm3Hz0vUSX/XgfqhZloN…
|
H A D | php_password_verify.phpt | 9 // Depending on library version, libsodium may provide argon2i or argon2id hashes.
|
/PHP-7.4/ext/standard/tests/password/ |
H A D | password_hash_argon2.phpt | 14 'argon2i', 30 string(7) "argon2i" 32 string(7) "argon2i" 34 string(7) "argon2i"
|
H A D | password_get_info_argon2.phpt | 11 var_dump(password_get_info('$argon2i$v=19$m=65536,t=3,p=1$SWhIcG5MT21Pc01PbWdVZw$WagZELICsz7jlqOR2Y… 18 string(7) "argon2i" 20 string(7) "argon2i"
|
H A D | password_verify_argon2.phpt | 11 var_dump(password_verify('test', '$argon2i$v=19$m=65536,t=3,p=1$OEVjWWs2Z3YvWlNZQ0ZmNw$JKin7ahjmh8J… 13 var_dump(password_verify('argon2', '$argon2i$v=19$m=65536,t=3,p=1$OEVjWWs2Z3YvWlNZQ0ZmNw$JKin7ahjmh…
|
/PHP-7.4/ext/sodium/ |
H A D | sodium_pwhash.c | 176 zend_string *argon2i = zend_string_init("argon2i", strlen("argon2i"), 1); in PHP_MINIT_FUNCTION() local 178 if (php_password_algo_find(argon2i)) { in PHP_MINIT_FUNCTION() 180 zend_string_release(argon2i); in PHP_MINIT_FUNCTION() 183 zend_string_release(argon2i); in PHP_MINIT_FUNCTION()
|
/PHP-7.4/ |
H A D | UPGRADING | 166 * PASSWORD_ARGON2I was int 2; now is string 'argon2i' 380 . password_hash() has argon2i(d) implementations from ext/sodium when PHP is
|
H A D | NEWS | 1684 . Implemented RFC where password_hash() has argon2i(d) implementations from
|
Completed in 16 milliseconds