/openssl-master/crypto/http/ |
A D | http_lib.c | 245 const char *found = NULL; in use_proxy() local 261 found = strstr(no_proxy, server); in use_proxy() 262 while (found != NULL in use_proxy() 263 && ((found != no_proxy && found[-1] != ' ' && found[-1] != ',') in use_proxy() 264 || (found[sl] != '\0' && found[sl] != ' ' && found[sl] != ','))) in use_proxy() 265 found = strstr(found + 1, server); in use_proxy() 266 return found == NULL; in use_proxy()
|
/openssl-master/ssl/ |
A D | pqueue.c | 107 pitem *found = NULL; in pqueue_find() local 114 found = next; in pqueue_find() 121 found = next; in pqueue_find() 123 if (!found) in pqueue_find() 126 return found; in pqueue_find()
|
A D | ssl_ciph.c | 1091 j = found = 0; in ssl_cipher_process_rulestr() 1096 found = 1; in ssl_cipher_process_rulestr() 1101 found = 1; in ssl_cipher_process_rulestr() 1107 if (!found) in ssl_cipher_process_rulestr() 1114 found = 0; in ssl_cipher_process_rulestr() 1126 found = 0; in ssl_cipher_process_rulestr() 1138 found = 0; in ssl_cipher_process_rulestr() 1150 found = 0; in ssl_cipher_process_rulestr() 1164 found = 0; in ssl_cipher_process_rulestr() 1178 found = 0; in ssl_cipher_process_rulestr() [all …]
|
/openssl-master/util/ |
A D | find-doc-nits | 554 my $found = $&; 555 push @synopsis, $found if $found =~ /^B<-/; 558 my $option_uw = normalise_option($id, $filename, $found); 559 err($id, "Malformed option [2] in SYNOPSIS: $found") 570 my $found = $2; 574 if ($1 // '') ne '' && $found =~ /^B<\s*-/; 576 my $option_uw = normalise_option($id, $filename, $found); 577 err($id, "Malformed option in OPTIONS: $found") 579 if ($found =~ /^B<-/) { 580 push @options, $found; [all …]
|
/openssl-master/test/ |
A D | filterprov.c | 196 const char *found = strstr(algs->algorithm_names, name); in filter_provider_set_filter() local 198 if (found == NULL) in filter_provider_set_filter() 200 if (found[namelen] != '\0' && found[namelen] != ':') in filter_provider_set_filter() 202 if (found != algs->algorithm_names && found[-1] != ':') in filter_provider_set_filter()
|
/openssl-master/crypto/ |
A D | params_from_text.c | 28 size_t *buf_n, BIGNUM **tmpbn, int *found) in prepare_from_text() argument 44 if (found != NULL) in prepare_from_text() 45 *found = p != NULL; in prepare_from_text() 182 size_t value_n, int *found) in OSSL_PARAM_allocate_from_text() argument 195 ¶mdef, &ishex, &buf_n, &tmpbn, found)) in OSSL_PARAM_allocate_from_text()
|
A D | core_namemap.c | 123 int found; member 129 data->names[data->found++] = namenum->name; in do_name() 148 cbdata.found = 0; in ossl_namemap_doall_names() 172 for (i = 0; i < cbdata.found; i++) in ossl_namemap_doall_names()
|
/openssl-master/test/recipes/ |
A D | 20-test_dhparam_check.t | 79 my $found = 0; 82 $found = 1 if m/$expected/; # output must include $expected 85 return $found;
|
A D | 30-test_evp.t | 159 my $found = !exists $opts{expected}; 167 $found = 1 172 return $res && $found;
|
A D | 25-test_x509.t | 114 my $found = 0; 119 $found = 1 if m/$expected/; # output must include $expected 123 return $res && $found;
|
/openssl-master/apps/ |
A D | CA.pl.in | 96 my $found = 0; 101 $found = 1 if /^-----BEGIN.*$bound/; 102 print OUT $_ if $found; 103 $found = 2, last if /^-----END.*$bound/; 107 return $found == 2 ? 0 : 1;
|
A D | ct_log_list.cnf | 4 # Google's list of logs can be found here: 7 # found here:
|
/openssl-master/crypto/ts/ |
A D | ts_rsp_verify.c | 542 int found = 0; in ts_check_signer_name() local 549 found = ts_find_name(gen_names, tsa_name) >= 0; in ts_check_signer_name() 550 if (found) in ts_check_signer_name() 561 return found; in ts_check_signer_name() 567 int i, found; in ts_find_name() local 568 for (i = 0, found = 0; !found && i < sk_GENERAL_NAME_num(gen_names); ++i) { in ts_find_name() 570 found = GENERAL_NAME_cmp(current, name) == 0; in ts_find_name() 572 return found ? i - 1 : -1; in ts_find_name()
|
/openssl-master/doc/man3/ |
A D | OSSL_PARAM_allocate_from_text.pod | 16 int *found); 30 I<paramdefs>. If an item was found, it converts I<value> to something 34 values from the item that was found, and I<< to->return_size >> is set 41 If I<found> is not NULL, I<*found> is set to 1 if I<key> could be 51 When an item in I<paramdefs> has been found, I<value> is converted 98 OSSL_PARAM_allocate_from_text() returns 1 if I<key> was found in
|
A D | EVP_PKEY_is_a.pod | 36 EVP_PKEY_get0_type_name() returns the first key type name that is found 58 EVP_PKEY_get0_type_name() returns the name that is found or NULL on error. 60 EVP_PKEY_get0_description() returns the description if found or NULL if not. 62 EVP_PKEY_get0_provider() returns the provider if found or NULL if not.
|
A D | DH_generate_parameters.pod | 55 number is generated, and when a prime has been found, B<BN_GENCB_call(cb, 3, 0)> 67 The value of B<*codes> is updated with any problems found. 68 If B<*codes> is zero then no problems were found, otherwise the 96 value of B<*codes> is updated with any problems found. If B<*codes> is zero then 97 no problems were found, otherwise the following bits may be set:
|
A D | EVP_PKEY_set_type.pod | 27 It is an error if no L<EVP_PKEY_ASN1_METHOD(3)> could be found for 34 It is an error if no L<EVP_PKEY_ASN1_METHOD(3)> could be found for 40 found, and is equal to or closely related to I<type> in the case of
|
A D | BIO_find_type.pod | 22 found. 53 break; /* Not found */
|
A D | SRP_VBASE_new.pod | 38 for users that are not found by SRP_VBASE_get1_by_user(). This allows the server 63 If no matching user is found but a seed_key and default gN parameters have been 69 If no matching user is found and the seed_key is not set, NULL is returned.
|
A D | X509V3_get_d2i.pod | 42 B<x> and, if found, decodes it. If B<idx> is B<NULL> then only one 47 -1 if the extension could not be found, 0 if the extension is found and is 108 found, occurs multiple times or cannot be decoded. It is possible to 205 fails due to a non-fatal error (extension not found, already exists,
|
/openssl-master/tools/ |
A D | c_rehash.in | 67 my $found = 0; 70 $found = 1; 75 if ($found == 0) {
|
/openssl-master/test/helpers/ |
A D | ssl_test_ctx.c | 788 int found = 0; in parse_client_options() local 797 found = 1; in parse_client_options() 801 if (!found) { in parse_client_options() 821 int found = 0; in parse_server_options() local 830 found = 1; in parse_server_options() 834 if (!found) { in parse_server_options() 856 int found = 0; in SSL_TEST_CTX_create() local 889 found = 1; in SSL_TEST_CTX_create() 893 if (!found) { in SSL_TEST_CTX_create()
|
/openssl-master/crypto/dso/ |
A D | dso_dlfcn.c | 342 unsigned int found = 0; in dladdr() local 379 found = 1; in dladdr() 400 } while (this_ldi->ldinfo_next && !found); in dladdr() 402 return (found && dl->dli_fname != NULL); in dladdr()
|
/openssl-master/doc/man7/ |
A D | des_modes.pod | 17 Normally, this is found as the function I<algorithm>_ecb_encrypt(). 42 Normally, this is found as the function I<algorithm>_cbc_encrypt(). 76 Normally, this is found as the function I<algorithm>_cfb_encrypt(). 123 Normally, this is found as the function I<algorithm>_ofb_encrypt(). 183 Normally, this is found as the function I<algorithm>_ecb3_encrypt(). 218 Normally, this is found as the function I<algorithm>_ede3_cbc_encrypt().
|
/openssl-master/apps/lib/ |
A D | s_socket.c | 85 int found = 0; in init_client() local 125 ++found; in init_client() 176 if (bindaddr != NULL && !found) { in init_client()
|