Home
last modified time | relevance | path

Searched refs:names (Results 1 – 25 of 204) sorted by relevance

123456789

/openssl/apps/
H A Dlist.c132 if (names != NULL && EVP_CIPHER_names_do_all(c, collect_names, names)) { in list_ciphers()
216 if (names != NULL && EVP_MD_names_do_all(m, collect_names, names)) { in list_digests()
277 if (names != NULL && EVP_MAC_names_do_all(m, collect_names, names)) { in list_macs()
341 if (names != NULL && EVP_KDF_names_do_all(k, collect_names, names)) { in list_kdfs()
540 if (names != NULL && OSSL_ENCODER_names_do_all(k, collect_names, names)) { in list_encoders()
605 if (names != NULL && OSSL_DECODER_names_do_all(k, collect_names, names)) { in list_decoders()
661 if (names != NULL && EVP_KEYMGMT_names_do_all(k, collect_names, names)) { in list_keymanagers()
724 if (names != NULL && EVP_SIGNATURE_names_do_all(k, collect_names, names)) { in list_signatures()
783 if (names != NULL && EVP_KEM_names_do_all(k, collect_names, names)) { in list_kems()
844 if (names != NULL in list_asymciphers()
[all …]
/openssl/apps/lib/
H A Dnames.c23 STACK_OF(OPENSSL_CSTRING) *names = vdata; in collect_names()
25 sk_OPENSSL_CSTRING_push(names, name); in collect_names()
28 void print_names(BIO *out, STACK_OF(OPENSSL_CSTRING) *names) in print_names() argument
30 int i = sk_OPENSSL_CSTRING_num(names); in print_names()
33 sk_OPENSSL_CSTRING_sort(names); in print_names()
37 const char *name = sk_OPENSSL_CSTRING_value(names, j); in print_names()
/openssl/doc/man7/
H A Dopenssl-core_names.h.pod5 openssl/core_names.h - OpenSSL provider parameter names
14 for L<OSSL_PARAM(3)> names, algorithm names and other known names used
17 Existing names are further described in the manuals for OpenSSL's
32 I<This header file does not constitute a general registry of names>.
34 their own parameter names.
38 to the names provided in this header to work in a compatible manner.
H A DEVP_MD-SHA2.pod25 Known names are "SHA2-224", "SHA-224" and "SHA224".
29 Known names are "SHA2-256", "SHA-256" and "SHA256".
33 Known names are "SHA2-384", "SHA-384" and "SHA384".
37 Known names are "SHA2-512", "SHA-512" and "SHA512".
49 Known names are "SHA2-512/224", "SHA-512/224" and "SHA512-224".
53 Known names are "SHA2-512/256", "SHA-512/256" and "SHA512-256".
/openssl/crypto/encode_decode/
H A Dencoder_pkey.c74 STACK_OF(OPENSSL_CSTRING) *names;
95 if (data->names == NULL) in collect_encoder()
98 end_i = sk_OPENSSL_CSTRING_num(data->names); in collect_encoder()
100 const char *name = sk_OPENSSL_CSTRING_value(data->names, i); in collect_encoder()
129 STACK_OF(OPENSSL_CSTRING) *names;
142 if (sk_OPENSSL_CSTRING_push(data->names, name) <= 0) in collect_name()
255 keymgmt_data.names = sk_OPENSSL_CSTRING_new_null(); in ossl_encoder_ctx_setup_for_pkey()
256 if (keymgmt_data.names == NULL) { in ossl_encoder_ctx_setup_for_pkey()
264 sk_OPENSSL_CSTRING_free(keymgmt_data.names); in ossl_encoder_ctx_setup_for_pkey()
268 encoder_data.names = keymgmt_data.names; in ossl_encoder_ctx_setup_for_pkey()
[all …]
H A Dencoder_meth.c73 const char *names; /* For get_encoder_from_store() */ member
143 if ((id = methdata->id) == 0 && methdata->names != NULL) { in get_encoder_from_store()
145 const char *names = methdata->names; in get_encoder_from_store() local
146 const char *q = strchr(names, NAME_SEPARATOR); in get_encoder_from_store()
147 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names)); in get_encoder_from_store()
151 id = ossl_namemap_name2num_n(namemap, methdata->names, l); in get_encoder_from_store()
182 if (names != NULL) { in put_encoder_in_store()
183 const char *q = strchr(names, NAME_SEPARATOR); in put_encoder_in_store()
185 l = (q == NULL ? strlen(names) : (size_t)(q - names)); in put_encoder_in_store()
317 const char *names = algodef->algorithm_names; in construct_encoder() local
[all …]
H A Ddecoder_meth.c73 const char *names; /* For get_decoder_from_store() */ member
143 if ((id = methdata->id) == 0 && methdata->names != NULL) { in get_decoder_from_store()
145 const char *names = methdata->names; in get_decoder_from_store() local
146 const char *q = strchr(names, NAME_SEPARATOR); in get_decoder_from_store()
147 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names)); in get_decoder_from_store()
151 id = ossl_namemap_name2num_n(namemap, names, l); in get_decoder_from_store()
182 if (names != NULL) { in put_decoder_in_store()
183 const char *q = strchr(names, NAME_SEPARATOR); in put_decoder_in_store()
185 l = (q == NULL ? strlen(names) : (size_t)(q - names)); in put_decoder_in_store()
307 const char *names = algodef->algorithm_names; in construct_decoder() local
[all …]
/openssl/util/
H A Dlocal_shlib.com.in5 our %names = ( map { platform->sharedname($_) =>
10 $ ! Create a local environment with the shared library logical names
17 $ NAMES := {- join(",", keys %names); -}
19 join("\n", map { "\$ __$_ = \"".$names{$_}."\"" } sort keys %names);
/openssl/crypto/evp/
H A Devp_fetch.c30 const char *names; /* For get_evp_method_from_store() */ member
135 const char *names = methdata->names; in get_evp_method_from_store() local
136 const char *q = strchr(names, NAME_SEPARATOR); in get_evp_method_from_store()
137 size_t l = (q == NULL ? strlen(names) : (size_t)(q - names)); in get_evp_method_from_store()
141 name_id = ossl_namemap_name2num_n(namemap, names, l); in get_evp_method_from_store()
175 if (names != NULL) { in put_evp_method_in_store()
176 const char *q = strchr(names, NAME_SEPARATOR); in put_evp_method_in_store()
178 l = (q == NULL ? strlen(names) : (size_t)(q - names)); in put_evp_method_in_store()
182 || (name_id = ossl_namemap_name2num_n(namemap, names, l)) == 0 in put_evp_method_in_store()
212 const char *names = algodef->algorithm_names; in construct_evp_method() local
[all …]
/openssl/doc/internal/man3/
H A Dossl_namemap_new.pod31 const char *names, const char separator);
35 A B<OSSL_NAMEMAP> is a one-to-many number E<lt>-E<gt> names map, which
36 can be used to give any arbitrary set of names (any string) a unique
58 names already associated with that number.
67 ossl_namemap_doall_names() walks through all names associated with
73 ossl_namemap_add_names() divides up a set of names given in I<names>,
92 pointers to the names corresponding to the given number, or NULL if
99 ossl_namemap_doall_names() returns 1 if the callback was called for all names. A
100 return value of 0 means that the callback was not called for any names.
103 names, or zero on error.
[all …]
/openssl/util/perl/OpenSSL/Util/
H A DPod.pm175 my @names =
184 join(', ', @names, @invisible_names), "\n"
188 names => [ @names, @invisible_names ],
/openssl/crypto/
H A Dparam_build_set.c99 const char *names[], in ossl_param_build_set_multi_key_bn() argument
107 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn()
108 if (!OSSL_PARAM_BLD_push_BN(bld, names[i], in ossl_param_build_set_multi_key_bn()
115 for (i = 0; i < sz && names[i] != NULL; ++i) { in ossl_param_build_set_multi_key_bn()
116 p = OSSL_PARAM_locate(params, names[i]); in ossl_param_build_set_multi_key_bn()
H A Dcore_namemap.c112 const char **names; member
119 data->names[data->found++] = namenum->name; in do_name()
153 cbdata.names = OPENSSL_malloc(sizeof(*cbdata.names) * num_names); in ossl_namemap_doall_names()
154 if (cbdata.names == NULL) { in ossl_namemap_doall_names()
163 fn(cbdata.names[i], data); in ossl_namemap_doall_names()
165 OPENSSL_free(cbdata.names); in ossl_namemap_doall_names()
295 const char *names, const char separator) in ossl_namemap_add_names() argument
305 if ((tmp = OPENSSL_strdup(names)) == NULL) in ossl_namemap_add_names()
341 p, this_number, names); in ossl_namemap_add_names()
/openssl/doc/man1/
H A Dopenssl-list.pod.in101 See L</Display of algorithm names> for a description of how names are
114 See L</Display of algorithm names> for a description of how names are
120 See L</Display of algorithm names> for a description of how names are
129 See L</Display of algorithm names> for a description of how names are
172 Display a list of all loaded providers with their names, version and status.
191 Display a list of built in objects, i.e. OIDs with names. They're listed in the
206 =head2 Display of algorithm names
208 Algorithm names may be displayed in one of two manners:
225 or like this if it's labeled with multiple names:
/openssl/crypto/objects/
H A Do_names.c307 const OBJ_NAME **names; member
317 d->names[d->n++] = name; in do_all_sorted_fn()
336 d.names = in OBJ_NAME_do_all_sorted()
337 OPENSSL_malloc(sizeof(*d.names) * lh_OBJ_NAME_num_items(names_lh)); in OBJ_NAME_do_all_sorted()
339 if (d.names != NULL) { in OBJ_NAME_do_all_sorted()
343 qsort((void *)d.names, d.n, sizeof(*d.names), do_all_sorted_cmp); in OBJ_NAME_do_all_sorted()
346 fn(d.names[n], arg); in OBJ_NAME_do_all_sorted()
348 OPENSSL_free((void *)d.names); in OBJ_NAME_do_all_sorted()
/openssl/test/ssl-tests/
H A D04-client_auth.cnf11 test-6 = 6-client-auth-flex-require-non-empty-names
17 test-12 = 12-client-auth-TLSv1-require-non-empty-names
23 test-18 = 18-client-auth-TLSv1.1-require-non-empty-names
210 [6-client-auth-flex-require-non-empty-names]
213 [6-client-auth-flex-require-non-empty-names-ssl]
217 [6-client-auth-flex-require-non-empty-names-server]
385 [12-client-auth-TLSv1-require-non-empty-names]
388 [12-client-auth-TLSv1-require-non-empty-names-ssl]
568 [18-client-auth-TLSv1.1-require-non-empty-names]
823 [26-client-auth-TLSv1.2-require-non-empty-names]
[all …]
H A D26-tls13_client_auth.cnf9 test-4 = 4-client-auth-TLSv1.3-require-non-empty-names
14 test-9 = 9-client-auth-TLSv1.3-require-non-empty-names-post-handshake
142 [4-client-auth-TLSv1.3-require-non-empty-names]
143 ssl_conf = 4-client-auth-TLSv1.3-require-non-empty-names-ssl
145 [4-client-auth-TLSv1.3-require-non-empty-names-ssl]
146 server = 4-client-auth-TLSv1.3-require-non-empty-names-server
147 client = 4-client-auth-TLSv1.3-require-non-empty-names-client
149 [4-client-auth-TLSv1.3-require-non-empty-names-server]
160 [4-client-auth-TLSv1.3-require-non-empty-names-client]
310 [9-client-auth-TLSv1.3-require-non-empty-names-post-handshake]
[all …]
/openssl/doc/man3/
H A DSSL_CTX_set0_CA_list.pod42 The functions described here set and manage the list of CA names that are sent
45 For TLS versions 1.2 and earlier the list of CA names is only sent from the
47 names set is never sent from client to server and the list of CA names retrieved
50 For TLS 1.3 the list of CA names is sent using the B<certificate_authorities>
54 In most cases it is not necessary to set CA names on the client side. The list
55 of CA names that are acceptable to the client will be sent in plaintext to the
58 and therefore setting CA names on the client side will have no impact if that
92 SSL_get0_peer_CA_list() retrieves the list of CA names (if any) the peer
138 only contains the names, not the complete certificates); use
158 and SSL_get0_CA_list() return a stack of CA names or B<NULL> is no CA names are
[all …]
/openssl/test/
H A Dssl_test.c237 static void print_ca_names(STACK_OF(X509_NAME) *names) in print_ca_names() argument
241 if (names == NULL || sk_X509_NAME_num(names) == 0) { in print_ca_names()
245 for (i = 0; i < sk_X509_NAME_num(names); i++) { in print_ca_names()
246 X509_NAME_print_ex(bio_err, sk_X509_NAME_value(names, i), 4, in print_ca_names()
254 STACK_OF(X509_NAME) *names) in check_ca_names()
260 if (names == NULL || sk_X509_NAME_num(names) == 0) { in check_ca_names()
265 if (sk_X509_NAME_num(names) != sk_X509_NAME_num(expected_names)) in check_ca_names()
267 for (i = 0; i < sk_X509_NAME_num(names); i++) { in check_ca_names()
268 if (!TEST_int_eq(X509_NAME_cmp(sk_X509_NAME_value(names, i), in check_ca_names()
280 print_ca_names(names); in check_ca_names()
/openssl/include/openssl/
H A Dcore.h195 # pragma names save
196 # pragma names uppercase,truncated
200 # pragma names restore
H A D__DECC_INCLUDE_PROLOGUE.H21 # pragma names save
25 # pragma names as_is,shortened
/openssl/include/crypto/
H A D__DECC_INCLUDE_PROLOGUE.H16 #pragma names save
20 #pragma names as_is,shortened
/openssl/include/internal/
H A D__DECC_INCLUDE_PROLOGUE.H16 #pragma names save
20 #pragma names as_is,shortened
/openssl/providers/implementations/include/prov/
H A D__DECC_INCLUDE_PROLOGUE.H21 # pragma names save
25 # pragma names as_is,shortened
/openssl/apps/include/
H A D__DECC_INCLUDE_PROLOGUE.H21 # pragma names save
25 # pragma names as_is,shortened

Completed in 51 milliseconds

123456789