Searched refs:memlimit (Results 1 – 4 of 4) sorted by relevance
/PHP-8.1/ext/sodium/ |
H A D | sodium_pwhash.c | 41 static inline int get_options(zend_array *options, size_t *memlimit, size_t *opslimit) { in get_options() argument 45 *memlimit = PHP_SODIUM_PWHASH_MEMLIMIT << 10; in get_options() 56 *memlimit = smemlimit << 10; in get_options() 73 size_t opslimit, memlimit; in php_sodium_argon2_hash() local 81 if (get_options(options, &memlimit, &opslimit) == FAILURE) { in php_sodium_argon2_hash() 86 …o_pwhash_str_alg(ZSTR_VAL(ret), ZSTR_VAL(password), ZSTR_LEN(password), opslimit, memlimit, alg)) { in php_sodium_argon2_hash() 106 size_t opslimit, memlimit; in php_sodium_argon2_needs_rehash() local 108 if (get_options(options, &memlimit, &opslimit) == FAILURE) { in php_sodium_argon2_needs_rehash() 111 return crypto_pwhash_str_needs_rehash(ZSTR_VAL(hash), opslimit, memlimit); in php_sodium_argon2_needs_rehash()
|
H A D | libsodium.stub.php | 119 …pwhash(int $length, string $password, string $salt, int $opslimit, int $memlimit, int $algo = SODI… argument 121 function sodium_crypto_pwhash_str(string $password, int $opslimit, int $memlimit): string {} argument 127 function sodium_crypto_pwhash_str_needs_rehash(string $password, int $opslimit, int $memlimit): boo… argument 131 …alsa208sha256(int $length, string $password, string $salt, int $opslimit, int $memlimit): string {} argument 133 …m_crypto_pwhash_scryptsalsa208sha256_str(string $password, int $opslimit, int $memlimit): string {} argument
|
H A D | libsodium.c | 1590 zend_long memlimit; in PHP_FUNCTION() local 1622 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION() 1678 zend_long memlimit; in PHP_FUNCTION() local 1685 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION() 1693 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION() 1730 zend_long memlimit; in PHP_FUNCTION() local 1780 zend_long memlimit; in PHP_FUNCTION() local 1789 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION() 1801 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION() 1836 zend_long memlimit; in PHP_FUNCTION() local [all …]
|
H A D | libsodium_arginfo.h | 251 ZEND_ARG_TYPE_INFO(0, memlimit, IS_LONG, 0) 260 ZEND_ARG_TYPE_INFO(0, memlimit, IS_LONG, 0) 275 ZEND_ARG_TYPE_INFO(0, memlimit, IS_LONG, 0) 285 ZEND_ARG_TYPE_INFO(0, memlimit, IS_LONG, 0) 293 ZEND_ARG_TYPE_INFO(0, memlimit, IS_LONG, 0)
|
Completed in 16 milliseconds