Home
last modified time | relevance | path

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

/PHP-8.0/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
44 *opslimit = PHP_SODIUM_PWHASH_OPSLIMIT; in get_options()
59 *opslimit = zval_get_long(opt); in get_options()
60 if ((*opslimit < crypto_pwhash_OPSLIMIT_MIN) || (*opslimit > crypto_pwhash_OPSLIMIT_MAX)) { 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 …if (crypto_pwhash_str_alg(ZSTR_VAL(ret), ZSTR_VAL(password), ZSTR_LEN(password), opslimit, memlimi… 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.stub.php88 function sodium_crypto_pwhash(int $length, string $password, string $salt, int $opslimit, int $meml… argument
90 function sodium_crypto_pwhash_str(string $password, int $opslimit, int $memlimit): string {} argument
96 function sodium_crypto_pwhash_str_needs_rehash(string $password, int $opslimit, int $memlimit): boo… argument
100 …_scryptsalsa208sha256(int $length, string $password, string $salt, int $opslimit, int $memlimit): … argument
102 function sodium_crypto_pwhash_scryptsalsa208sha256_str(string $password, int $opslimit, int $memlim… argument
H A Dlibsodium.c1479 zend_long opslimit; in PHP_FUNCTION() local
1506 if (opslimit <= 0) { in PHP_FUNCTION()
1567 zend_long opslimit; in PHP_FUNCTION() local
1573 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION()
1577 if (opslimit <= 0) { in PHP_FUNCTION()
1619 zend_long opslimit; in PHP_FUNCTION() local
1669 zend_long opslimit; in PHP_FUNCTION() local
1677 &opslimit, &memlimit) == FAILURE) { in PHP_FUNCTION()
1685 if (opslimit <= 0) { in PHP_FUNCTION()
1725 zend_long opslimit; in PHP_FUNCTION() local
[all …]
H A Dlibsodium_arginfo.h187 ZEND_ARG_TYPE_INFO(0, opslimit, IS_LONG, 0)
196 ZEND_ARG_TYPE_INFO(0, opslimit, IS_LONG, 0)
211 ZEND_ARG_TYPE_INFO(0, opslimit, IS_LONG, 0)
221 ZEND_ARG_TYPE_INFO(0, opslimit, IS_LONG, 0)
229 ZEND_ARG_TYPE_INFO(0, opslimit, IS_LONG, 0)

Completed in 20 milliseconds