Home
last modified time | relevance | path

Searched refs:found (Results 1 – 25 of 186) sorted by relevance

12345678

/openssl/crypto/http/
H A Dhttp_lib.c260 const char *found = NULL; in use_proxy() local
283 found = strstr(no_proxy, server); in use_proxy()
284 while (found != NULL in use_proxy()
285 && ((found != no_proxy && !ossl_isspace(found[-1]) && found[-1] != ',') in use_proxy()
286 || (found[sl] != '\0' && !ossl_isspace(found[sl]) && found[sl] != ','))) in use_proxy()
287 found = strstr(found + 1, server); in use_proxy()
288 return found == NULL; in use_proxy()
/openssl/ssl/
H A Dpqueue.c102 pitem *found = NULL; in pqueue_find() local
109 found = next; in pqueue_find()
116 found = next; in pqueue_find()
118 if (!found) in pqueue_find()
121 return found; in pqueue_find()
H A Dssl_cert_comp.c164 int found = 0; in ssl_set_cert_comp_pref() local
186 found = 1; in ssl_set_cert_comp_pref()
189 if (found) in ssl_set_cert_comp_pref()
191 return found; in ssl_set_cert_comp_pref()
H A Dssl_ciph.c1063 j = found = 0; in ssl_cipher_process_rulestr()
1068 found = 1; in ssl_cipher_process_rulestr()
1073 found = 1; in ssl_cipher_process_rulestr()
1079 if (!found) in ssl_cipher_process_rulestr()
1086 found = 0; in ssl_cipher_process_rulestr()
1098 found = 0; in ssl_cipher_process_rulestr()
1110 found = 0; in ssl_cipher_process_rulestr()
1122 found = 0; in ssl_cipher_process_rulestr()
1136 found = 0; in ssl_cipher_process_rulestr()
1150 found = 0; in ssl_cipher_process_rulestr()
[all …]
/openssl/util/
H A Dfind-doc-nits554 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/test/
H A Dfilterprov.c196 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/crypto/
H A Dparams_from_text.c28 size_t *buf_n, BIGNUM **tmpbn, int *found) in prepare_from_text() argument
41 if (found != NULL) in prepare_from_text()
42 *found = p != NULL; in prepare_from_text()
203 size_t value_n, int *found) in OSSL_PARAM_allocate_from_text() argument
216 &paramdef, &ishex, &buf_n, &tmpbn, found)) in OSSL_PARAM_allocate_from_text()
/openssl/test/recipes/
H A D20-test_dhparam_check.t79 my $found = 0;
82 $found = 1 if m/$expected/; # output must include $expected
85 return $found;
H A D30-test_evp.t179 my $found = !exists $opts{expected};
187 $found = 1
192 return $res && $found;
/openssl/apps/
H A DCA.pl.in98 my $found = 0;
103 $found = 1 if /^-----BEGIN.*$bound/;
104 print OUT $_ if $found;
105 $found = 2, last if /^-----END.*$bound/;
109 return $found == 2 ? 0 : 1;
H A Dct_log_list.cnf4 # Google's list of logs can be found here:
7 # found here:
/openssl/crypto/ts/
H A Dts_rsp_verify.c540 int found = 0; in ts_check_signer_name() local
547 found = ts_find_name(gen_names, tsa_name) >= 0; in ts_check_signer_name()
548 if (found) in ts_check_signer_name()
559 return found; in ts_check_signer_name()
565 int i, found; in ts_find_name() local
566 for (i = 0, found = 0; !found && i < sk_GENERAL_NAME_num(gen_names); ++i) { in ts_find_name()
568 found = GENERAL_NAME_cmp(current, name) == 0; in ts_find_name()
570 return found ? i - 1 : -1; in ts_find_name()
/openssl/
H A DREADME-QUIC.md13 for these can be [found in the source tree under `demos/guide`](./demos/guide/).
18 using simple examples. These can be [found in the source tree under
20 - The [demo found in `demos/http3`], which provides an HTTP/3 client example
43 library with OpenSSL QUIC is demonstrated via the [demo found in `demos/http3`].
76 [found in the source tree under `doc/designs/ddd`]: ./doc/designs/ddd/
77 [demo found in `demos/http3`]: ./demos/http3/
/openssl/doc/man3/
H A DOSSL_PARAM_allocate_from_text.pod16 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
H A DEVP_PKEY_is_a.pod36 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.
H A DEVP_PKEY_set_type.pod27 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
H A DDH_generate_parameters.pod55 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:
H A DX509_STORE_CTX_get_by_subject.pod25 If found and I<ret> is not NULL, it increments the reference count and
29 but returns the found object on success, else NULL.
H A DX509_ACERT_get_attr.pod36 certificate, or NULL if the specified attribute is not found.
39 the location of the next attribute requested or -1 if not found.
H A DERR_set_mark.pod23 ERR_pop_to_mark() will pop the top of the error stack until a mark is found.
42 ERR_count_to_mark() returns the number of error stack entries found above the
H A DSRP_VBASE_new.pod38 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.
/openssl/test/helpers/
H A Dssl_test_ctx.c803 int found = 0; in parse_client_options() local
812 found = 1; in parse_client_options()
816 if (!found) { in parse_client_options()
836 int found = 0; in parse_server_options() local
845 found = 1; in parse_server_options()
849 if (!found) { in parse_server_options()
871 int found = 0; in SSL_TEST_CTX_create() local
904 found = 1; in SSL_TEST_CTX_create()
908 if (!found) { in SSL_TEST_CTX_create()
/openssl/tools/
H A Dc_rehash.in67 my $found = 0;
70 $found = 1;
75 if ($found == 0) {
/openssl/crypto/dso/
H A Ddso_dlfcn.c336 unsigned int found = 0; in dladdr() local
373 found = 1; in dladdr()
394 } while (this_ldi->ldinfo_next && !found); in dladdr()
396 return (found && dl->dli_fname != NULL); in dladdr()
/openssl/doc/man7/
H A Ddes_modes.pod17 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().

Completed in 72 milliseconds

12345678