Home
last modified time | relevance | path

Searched refs:memlimit (Results 1 – 4 of 4) sorted by relevance

/PHP-8.2/ext/sodium/
H A Dsodium_pwhash.c41 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 Dlibsodium.c1420 zend_long memlimit; in PHP_FUNCTION() local
1452 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION()
1508 zend_long memlimit; in PHP_FUNCTION() local
1515 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION()
1523 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION()
1560 zend_long memlimit; in PHP_FUNCTION() local
1610 zend_long memlimit; in PHP_FUNCTION() local
1619 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION()
1631 if (memlimit <= 0 || memlimit > SIZE_MAX) { in PHP_FUNCTION()
1666 zend_long memlimit; in PHP_FUNCTION() local
[all …]
H A Dlibsodium_arginfo.h251 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)
H A Dlibsodium.stub.php626 function sodium_crypto_pwhash_str_needs_rehash(string $password, int $opslimit, int $memlimit): boo…

Completed in 24 milliseconds