/openssl-master/doc/man3/ |
A D | SSL_CTX_set1_curves.pod | 21 int SSL_get1_groups(SSL *ssl, int *groups); 44 groups in the array B<glist>. The array consist of all NIDs of groups in 46 supported groups extension. For a TLS server the groups are used to 47 determine the set of shared groups. Currently supported groups for 52 SSL_CTX_set1_groups_list() sets the supported groups for B<ctx> to 57 for other groups may be added by external providers. 60 supported groups for the SSL structure B<ssl>. 63 in the supported groups extension. It returns the total number of 64 supported groups. The B<groups> parameter can be B<NULL> to simply 65 return the number of groups for memory allocation purposes. The [all …]
|
A D | SSL_CONF_cmd.pod | 138 =item B<-groups> I<groups> 140 This sets the supported groups. For clients, the groups are sent using 141 the supported groups extension. For servers, it is used to determine which 142 group to use. This setting affects groups used for signatures (in TLSv1.2 146 The B<groups> argument is a colon separated list of groups. The group can 156 =item B<-curves> I<groups> 158 This is a synonym for the B<-groups> command. 165 The B<groups> argument is a curve name or the special value B<auto> which 375 This sets the supported groups. For clients, the groups are 376 sent using the supported groups extension. For servers, it is used [all …]
|
A D | DH_get0_pqg.pod | 63 optionally I<q> are associated with known safe prime groups. If it is a safe 102 length of the secret exponent (private key) in bits. For safe prime groups the optional length para…
|
A D | DES_random_key.pod | 192 characters. It does not require any padding to 8 character groups. 211 characters. It does not require any padding to 8 character groups.
|
/openssl-master/doc/man7/ |
A D | EVP_PKEY-DH.pod | 12 groups, and a class of "FIPS 186-type" domain parameters. FIPS 186-type domain 14 applications that cannot be upgraded to use the approved safe-prime groups. 50 DH/DHX named groups can be easily validated since the parameters are well known. 254 =item RFC 7919 (TLS ffdhe named safe prime groups) 256 =item RFC 3526 (IKE modp named safe prime groups) 258 =item RFC 5114 (Additional DH named groups for dh_1024_160", "dh_2048_224"
|
A D | openssl-glossary.pod | 197 A provider in OpenSSL is a component that groups together algorithm
|
A D | provider-base.pod | 534 TLS groups that a provider can support. Each group supported can be used for 537 TLS clients can advertise the list of TLS groups they support in the 540 groups that libssl already supports with additional ones.
|
A D | migration_guide.pod | 2267 This uses DH safe prime named groups. 2271 Support for fully "pluggable" TLSv1.3 groups. 2329 connections with TLSv1.3. However OpenSSL now supports "pluggable" groups 2333 using third party provider groups may result in handshake failures. TLSv1.3
|
A D | crypto.pod | 38 These different groups are known as "operations" in OpenSSL. Each operation
|
/openssl-master/apps/demoSRP/ |
A D | srp_verifier.txt | 2 # You can initialize the file with additional groups, these are
|
/openssl-master/test/recipes/30-test_evp_data/ |
A D | evpmd_sha.txt | 156 # http://csrc.nist.gov/groups/ST/toolkit/examples.html#aHashing 158 # http://csrc.nist.gov/groups/STM/cavp/secure-hashing.html#test-vectors 266 # http://csrc.nist.gov/groups/STM/cavp/secure-hashing.html#test-vectors
|
A D | evpciph_aes_common.txt | 635 # AES GCM test vectors from http://csrc.nist.gov/groups/ST/toolkit/BCM/documents/proposedmodes/gcm/…
|
/openssl-master/test/ssl-tests/ |
A D | 20-cert-select.cnf.in | 115 #Deliberately set groups to not include the certificate group. This 833 # Excluding P-256 from the supported groups list should 835 # groups is not used in signature selection for TLS 1.3 849 # Excluding P-256 from the supported groups list should 851 # groups is not used in signature selection for TLS 1.3 897 name => "TLS 1.3 ECDSA with brainpool but no suitable groups",
|
A D | 20-cert-select.cnf | 57 test-52 = 52-TLS 1.3 ECDSA with brainpool but no suitable groups 1710 [52-TLS 1.3 ECDSA with brainpool but no suitable groups] 1711 ssl_conf = 52-TLS 1.3 ECDSA with brainpool but no suitable groups-ssl 1713 [52-TLS 1.3 ECDSA with brainpool but no suitable groups-ssl] 1714 server = 52-TLS 1.3 ECDSA with brainpool but no suitable groups-server 1715 client = 52-TLS 1.3 ECDSA with brainpool but no suitable groups-client 1717 [52-TLS 1.3 ECDSA with brainpool but no suitable groups-server] 1723 [52-TLS 1.3 ECDSA with brainpool but no suitable groups-client]
|
/openssl-master/apps/lib/ |
A D | s_cb.c | 350 int i, ngroups, *groups, nid; in ssl_print_groups() local 355 groups = app_malloc(ngroups * sizeof(int), "groups to print"); in ssl_print_groups() 356 SSL_get1_groups(s, groups); in ssl_print_groups() 362 nid = groups[i]; in ssl_print_groups() 365 OPENSSL_free(groups); in ssl_print_groups()
|
/openssl-master/apps/ |
A D | cmp.c | 2028 static char *conf_get_string(const CONF *src_conf, const char *groups, in conf_get_string() argument 2032 const char *end = groups + strlen(groups); in conf_get_string() 2034 while ((end = prev_item(groups, end)) != NULL) { in conf_get_string() 2042 static int conf_get_number_e(const CONF *conf_, const char *groups, in conf_get_number_e() argument 2045 char *str = conf_get_string(conf_, groups, name); in conf_get_number_e()
|
/openssl-master/ssl/ |
A D | t1_lib.c | 652 int *groups, size_t ngroups) in tls1_set_groups() argument 675 id = tls1_nid2group_id(groups[i]); in tls1_set_groups() 774 const uint16_t *groups; in tls1_check_group_id() local 798 tls1_get_supported_groups(s, &groups, &groups_len); in tls1_check_group_id() 799 if (!tls1_in_list(group_id, groups, groups_len)) in tls1_check_group_id() 811 tls1_get_peer_groups(s, &groups, &groups_len); in tls1_check_group_id() 821 return tls1_in_list(group_id, groups, groups_len); in tls1_check_group_id()
|
/openssl-master/doc/man1/ |
A D | openssl-ecparam.pod.in | 33 OpenSSL is currently not able to generate new groups and therefore
|
A D | openssl-dgst.pod.in | 67 Print out the digest in two digit groups separated by colons, only relevant if
|
/openssl-master/ssl/statem/ |
A D | extensions_srvr.c | 1328 const uint16_t *groups; in tls_construct_stoc_supported_groups() local 1337 tls1_get_supported_groups(s, &groups, &numgroups); in tls_construct_stoc_supported_groups() 1346 uint16_t group = groups[i]; in tls_construct_stoc_supported_groups()
|
A D | statem_lib.c | 2160 int check_in_list(SSL *s, uint16_t group_id, const uint16_t *groups, in check_in_list() argument 2165 if (groups == NULL || num_groups == 0) in check_in_list() 2169 uint16_t group = groups[i]; in check_in_list()
|
A D | statem_local.h | 60 int check_in_list(SSL *s, uint16_t group_id, const uint16_t *groups,
|
/openssl-master/test/ |
A D | README.md | 120 Run all tests in test groups 80 to 99 except for tests in group 90:
|
/openssl-master/doc/internal/man3/ |
A D | OPTIONS.pod | 303 There are a few groups of options that are common to many OpenSSL programs.
|
/openssl-master/crypto/err/ |
A D | openssl.txt | 1380 SSL_R_MISSING_SUPPORTED_GROUPS_EXTENSION:209:missing supported groups extension 1408 SSL_R_NO_SHARED_GROUPS:410:no shared groups 1412 SSL_R_NO_SUITABLE_GROUPS:295:no suitable groups
|