Searched refs:iterations (Results 1 - 4 of 4) sorted by relevance
| /PHP_TRUNK/ext/phar/phar/ |
| H A D | pharcommand.inc | 719 * @param string $func Function to call on the iterations
|
| /PHP_TRUNK/sapi/isapi/stresstest/ |
| H A D | stresstest.cpp | 34 DWORD iterations = 1; variable 478 " -i number of iterations per thread (default=1)\n" 503 iterations = atoi(ap_optarg); 596 for (DWORD j=0; j<iterations; j++) {
|
| /PHP_TRUNK/ext/hash/ |
| H A D | hash.c | 607 /* {{{ proto string hash_pbkdf2(string algo, string password, string salt, int iterations [, int length = 0, bool raw_output = false]) 614 long loops, i, j, algo_len, pass_len, iterations, length, digest_length = 0; local 621 if (zend_parse_parameters(argc TSRMLS_CC, "sssl|lb", &algo, &algo_len, &pass, &pass_len, &salt, &salt_len, &iterations, &length, &raw_output) == FAILURE) { 631 if (iterations <= 0) { 632 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Iterations must be a positive integer: %ld", iterations); 695 for (j = 1; j < iterations; j++) { 1145 ZEND_ARG_INFO(0, iterations)
|
| /PHP_TRUNK/ext/openssl/ |
| H A D | openssl.c | 252 ZEND_ARG_INFO(0, iterations) 3663 /* {{{ proto string openssl_pbkdf2(string password, string salt, long key_length, long iterations [, string digest_method = "sha1"]) 3667 long key_length = 0, iterations = 0; local 3678 &key_length, &iterations, 3701 if (PKCS5_PBKDF2_HMAC(password, password_len, (unsigned char *)salt, salt_len, iterations, digest, key_length, out_buffer) == 1) {
|
Completed in 48 milliseconds