.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man v6.0.2 (Pod::Simple 3.45) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" .\" Required to disable full justification in groff 1.23.0. .if n .ds AD l .\" ======================================================================== .\" .IX Title "SSL_CTX_SET1_CURVES 3ssl" .TH SSL_CTX_SET1_CURVES 3ssl 2026-04-07 3.6.2 OpenSSL .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME SSL_CTX_set1_groups, SSL_CTX_set1_groups_list, SSL_set1_groups, SSL_set1_groups_list, SSL_get1_groups, SSL_get0_iana_groups, SSL_get_shared_group, SSL_get_negotiated_group, SSL_CTX_set1_curves, SSL_CTX_set1_curves_list, SSL_set1_curves, SSL_set1_curves_list, SSL_get1_curves, SSL_get_shared_curve, SSL_CTX_get0_implemented_groups \&\- EC supported curve functions .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& #include \& \& int SSL_CTX_set1_groups(SSL_CTX *ctx, int *glist, int glistlen); \& int SSL_CTX_set1_groups_list(SSL_CTX *ctx, char *list); \& \& int SSL_set1_groups(SSL *ssl, int *glist, int glistlen); \& int SSL_set1_groups_list(SSL *ssl, char *list); \& \& int SSL_get1_groups(SSL *ssl, int *groups); \& int SSL_get0_iana_groups(SSL *ssl, uint16_t **out); \& int SSL_get_shared_group(SSL *s, int n); \& int SSL_get_negotiated_group(SSL *s); \& \& int SSL_CTX_set1_curves(SSL_CTX *ctx, int *clist, int clistlen); \& int SSL_CTX_set1_curves_list(SSL_CTX *ctx, char *list); \& \& int SSL_set1_curves(SSL *ssl, int *clist, int clistlen); \& int SSL_set1_curves_list(SSL *ssl, char *list); \& \& int SSL_get1_curves(SSL *ssl, int *curves); \& int SSL_get_shared_curve(SSL *s, int n); \& \& int SSL_CTX_get0_implemented_groups(SSL_CTX *ctx, int all, \& STACK_OF(OPENSSL_CSTRING) *names); .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" For all of the functions below that set the supported groups there must be at least one group in the list. A number of these functions identify groups via a unique integer \fBNID\fR value. However, support for some groups may be added by external providers. In this case there will be no \fBNID\fR assigned for the group. When setting such groups applications should use the "list" form of these functions (i.e. \fBSSL_CTX_set1_groups_list()\fR and \fBSSL_set1_groups_list()\fR). .PP \&\fBSSL_CTX_set1_groups()\fR sets the supported groups for \fBctx\fR to \fBglistlen\fR groups in the array \fBglist\fR. The array consist of all \fBNIDs\fR of supported groups. The supported groups for \fBTLSv1.3\fR include: \&\fBNID_X9_62_prime256v1\fR, \&\fBNID_secp384r1\fR, \&\fBNID_secp521r1\fR, \&\fBNID_X25519\fR, \&\fBNID_X448\fR, \&\fBNID_brainpoolP256r1tls13\fR, \&\fBNID_brainpoolP384r1tls13\fR, \&\fBNID_brainpoolP512r1tls13\fR, \&\fBNID_ffdhe2048\fR, \&\fBNID_ffdhe3072\fR, \&\fBNID_ffdhe4096\fR, \&\fBNID_ffdhe6144\fR, and \&\fBNID_ffdhe8192\fR. OpenSSL will use this array in different ways based on the TLS version, and whether the groups are used in a client or server. .PP For a TLS client, the groups are used directly in the supported groups extension. The extension\*(Aqs preference order, to be evaluated by the server, is determined by the order of the elements in the array. .PP For a TLS 1.2 server, the groups determine the selected group. If \&\fBSSL_OP_SERVER_PREFERENCE\fR is set, the order of the elements in the array determines the selected group. Otherwise, the order is ignored and the client\*(Aqs order determines the selection. .PP For a TLS 1.3 server, the groups determine the selected group, but selection is more complex. A TLS 1.3 client sends both a group list and predicted keyshares for a subset of groups. A server choosing a group outside the client\*(Aqs predicted subset incurs an extra roundtrip. However, in some situations, the most preferred group may not be predicted. .PP When groups are specified via \fBSSL_CTX_set1_groups()\fR as a list of \fBNID\fR values, OpenSSL considers all supported groups in \fIclist\fR to be comparable in security and prioritises avoiding roundtrips above either client or server preference order. If an application uses an external provider to extend OpenSSL with, e.g., a post\-quantum algorithm, this behavior may allow a network attacker to downgrade connections to a weaker algorithm. It is therefore recommended to use \fBSSL_CTX_set1_groups_list()\fR instead, making it possible to specify group tuples as described below. .PP \&\fBSSL_CTX_set1_groups_list()\fR sets the supported groups for \fBctx\fR to string \fIlist\fR. In contrast to \fBSSL_CTX_set1_groups()\fR, the names of the groups, rather than their \fBNIDs\fR, are used. .PP The commands below list the available groups for TLS 1.2 and TLS 1.3, respectively: .PP .Vb 2 \& $ openssl list \-tls1_2 \-tls\-groups \& $ openssl list \-tls1_3 \-tls\-groups .Ve .PP Each group can be either the \fBNIST\fR name (e.g. \fBP\-256\fR), some other commonly used name where applicable (e.g. \fBX25519\fR, \fBffdhe2048\fR) or an OpenSSL OID name (e.g. \fBprime256v1\fR). Group names are case\-insensitive in OpenSSL 3.5 and later. The preferred group names are those defined by IANA . .PP The \fIlist\fR can be used to define several group tuples of comparable security levels, and can specify which predicted key shares should be sent by a client. Group tuples are used by OpenSSL TLS servers to decide whether to request a stronger keyshare than those predicted by sending a Hello Retry Request (\fBHRR\fR) even if some of the predicted groups are supported. OpenSSL clients ignore tuple boundaries, and pay attenion only to the overall order of \fIlist\fR elements and which groups are selected as predicted keyshares as described below. .PP The specified list elements can optionally be ignored if not implemented (listing unknown groups otherwise results in error). It is also possible to specify the built\-in default set of groups, and to explicitly remove a group from that list. .PP In its simplest legacy form, the string \fIlist\fR is just a colon separated list of group names, for example "P\-521:P\-384:P\-256:X25519:ffdhe2048". The first group listed will in this case be used as the sole predicted \&\fBkey_share\fR sent by a client in a TLSv1.3 \fBClientHello\fR. The list should be in order of preference with the most preferred group first. .PP A more expressive syntax supports definition of group tuples of comparable security by separating them from each other with \f(CW\*(C`/\*(C'\fR characters. .PP The predicted keyshares to be sent by clients can be explicitly specified by adding a \f(CW\*(C`*\*(C'\fR prefix to the associated group name. These \f(CW\*(C`*\*(C'\fR prefixes are ignored by servers. .PP If a group name is prefixed with the \f(CW\*(C`?\*(C'\fR character, it will be ignored if an implementation is missing. Otherwise, listing an unknown group name will cause a failure to parse the \&\fIlist\fR. Note that whether a group is known or not may depend on the OpenSSL version, how OpenSSL was compiled and/or which providers are loaded. Make sure you have the correct spelling of the group name and when in doubt prefix it with a \f(CW\*(C`?\*(C'\fR to handle configurations in which it might nevertheless be unknown. .PP If a group name is prefixed with the \f(CW\*(C`\-\*(C'\fR character, it will be removed from the list of groups specified up to that point. It can be added again if specified later. Removal of groups that have not been included earlier in the list is silently ignored. .PP The pseudo group name \f(CW\*(C`DEFAULT\*(C'\fR can be used to select the OpenSSL built\-in default list of groups. Prepending one or more groups to \f(CW\*(C`DEFAULT\*(C'\fR using only \f(CW\*(C`:\*(C'\fR separators prepends those groups to the built\-in default list\*(Aqs first tuple. Additional tuples can be prepended by use of the \f(CW\*(C`/\*(C'\fR separator. Appending a set of groups to \f(CW\*(C`DEFAULT\*(C'\fR using only \f(CW\*(C`:\*(C'\fR separators appends those groups to the built\-in default list\*(Aqs last tuple. Additional tuples can be appended by use of the \f(CW\*(C`/\*(C'\fR separator. .PP The \fBDEFAULT\fR list selects \fBX25519MLKEM768\fR as one of the predicted keyshares. In rare cases this can lead to failures or timeouts because the resulting larger TLS Client Hello message may no longer fit in a single TCP segment and firewall software may erroneously disrupt the TLS handshake. If this is an issue or concern, prepending \f(CW\*(C`?X25519MLKEM768:\*(C'\fR without a \f(CW\*(C`*\*(C'\fR prefix leads to its occurrence in the default list to be ignored as a duplicate, and along with that also the keyshare prediction. The group will then only be selected by servers that specifically expect it, after a Hello Retry Request (HRR). Servers that specifically prefer \fBX25519MLKEM768\fR, are much less likely to be found behind problematic firewalls. .PP The following string \fIlist\fR for example defines three tuples when used on the server\-side, and triggers the generation of three key shares when used on the client\-side: P\-521:*P\-256/*P\-384/*X25519:P\-384:ffdhe2048. .PP For a TLS 1.3 client, all the groups in the string \fIlist\fR are added to the supported groups extension of a \f(CW\*(C`ClientHello\*(C'\fR, in the order in which they are listed, thereby interpreting tuple separators as group separators. The extension\*(Aqs preference order, to be evaluated by the server, is determined by the order of the elements in the array, see below. .PP If a group name is preceded by \f(CW\*(C`*\*(C'\fR, a key share will be sent for this group. When preceding \f(CW\*(C`DEFAULT\*(C'\fR with \f(CW\*(C`*\*(C'\fR, a key share will be sent for the first group of the OpenSSL built\-in default list of groups. If no \f(CW\*(C`*\*(C'\fR is used anywhere in the list, a single key share for the leftmost valid group is sent. A maximum of 4 key shares are supported. Example: "P\-521:*P\-256/*P\-384" will add P\-521, P\-256 and P\-384 to the supported groups extension in a \f(CW\*(C`ClientHello\*(C'\fR and will send key shares for P\-256 and P\-384. .PP For a TLS 1.3 server, the groups in the string \fIlist\fR will be used to determine which group is used for the key agreement. The preference order of the group tuples is determined by the order of the tuples in the array, and the preference order of the groups within a group tuple is determined by the order of the groups in the tuple. Server preference can be enforced by setting \fBSSL_OP_SERVER_PREFERENCE\fR using \&\fBSSL_set_options\fR (default: client preference). .PP The server will select the group to be used for a key agreement using the following pseudo\-code algorithm: .PP .Vb 12 \& FOR each group tuple \& IF client preference (= default) \& FOR each client key\-share group \& IF current key\-share group is also part of current group tuple: SH, return success \& FOR each client supported groups \& IF current supported group is also part of current group tuple: HRR, return success \& ELSE (= server preference = with SSL_OP_SERVER_PREFERENCE option set) \& FOR each group in current tuple \& IF current group is also part of client key\-share groups: SH, return success \& FOR each group in current tuple \& IF current group is also part of client supported groups: HRR, return success \& return failure \& \& with : SH: Server hello with current group \& HRR: Server retry request with current group .Ve .PP Hence, if a client supports a group in a server group tuple, but does not send a key share for this group, a Hello Retry Request (HRR) is triggered, asking the client to send a new Hello message with a more preferred keyshare. See examples below. .PP A group name can optionally be preceded by any of \f(CW\*(C`*\*(C'\fR, \f(CW\*(C`?\*(C'\fR or \f(CW\*(C`\-\*(C'\fR, in any order, with the exception that only \f(CW\*(C`*\*(C'\fR is allowed to precede \f(CW\*(C`DEFAULT\*(C'\fR. Separator characters \&\f(CW\*(C`:\*(C'\fR and \f(CW\*(C`/\*(C'\fR are only allowed inside the \fIlist\fR and not at the very beginning or end. .PP \&\fBSSL_set1_groups()\fR and \fBSSL_set1_groups_list()\fR are similar except they set supported groups for the SSL structure \fBssl\fR. .PP \&\fBSSL_get1_groups()\fR returns the set of supported groups sent by a client in the supported groups extension. It returns the total number of supported groups. The \fBgroups\fR parameter can be \fBNULL\fR to simply return the number of groups for memory allocation purposes. The \&\fBgroups\fR array is in the form of a set of group NIDs in preference order. It can return zero if the client did not send a supported groups extension. If a supported group NID is unknown then the value is set to the bitwise OR of TLSEXT_nid_unknown (0x1000000) and the id of the group. .PP \&\fBSSL_get0_iana_groups()\fR retrieves the list of groups sent by the client in the supported_groups extension. The \fB*out\fR array of bytes is populated with the host\-byte\-order representation of the uint16_t group identifiers, as assigned by IANA. The group list is returned in the same order that was received in the ClientHello. The return value is the number of groups, not the number of bytes written. .PP \&\fBSSL_get_shared_group()\fR returns the NID of the shared group \fBn\fR for a server\-side SSL \fBssl\fR. If \fBn\fR is \-1 then the total number of shared groups is returned, which may be zero. Other than for diagnostic purposes, most applications will only be interested in the first shared group so \fBn\fR is normally set to zero. If the value \fBn\fR is out of range, NID_undef is returned. If the NID for the shared group is unknown then the value is set to the bitwise OR of TLSEXT_nid_unknown (0x1000000) and the id of the group. .PP \&\fBSSL_get_negotiated_group()\fR returns the NID of the negotiated group used for the handshake key exchange process. For TLSv1.3 connections this typically reflects the state of the current connection, though in the case of PSK\-only resumption, the returned value will be from a previous connection. For earlier TLS versions, when a session has been resumed, it always reflects the group used for key exchange during the initial handshake (otherwise it is from the current, non\-resumption, connection). This can be called by either client or server. If the NID for the shared group is unknown then the value is set to the bitwise OR of TLSEXT_nid_unknown (0x1000000) and the id of the group. See also \&\fBSSL_get0_group_name\fR\|(3) which returns the name of the negotiated group directly and is generally preferred over \fBSSL_get_negotiated_group()\fR. .PP \&\fBSSL_CTX_get0_implemented_groups()\fR populates a stack with the names of TLS groups that are compatible with the TLS version of the \fBctx\fR argument. The returned names are references to internal constants and must not be modified or freed. When \fBall\fR is nonzero, the returned list includes not only the preferred IANA names of the groups, but also any associated aliases. If the SSL_CTX is version\-flexible, the groups will be those compatible with any configured minimum and maximum protocol versions. The \fBnames\fR stack should be allocated by the caller and be empty, the matching group names are appended to the provided stack. The \fB\-tls\-groups\fR and \fB\-all\-tls\-groups\fR options of the openssl list command output these lists for either TLS 1.2 or TLS 1.3 (by default). .PP All these functions are implemented as macros. .PP The curve functions are synonyms for the equivalently named group functions and are identical in every respect. They exist because, prior to TLS1.3, there was only the concept of supported curves. In TLS1.3 this was renamed to supported groups, and extended to include Diffie Hellman groups. The group functions should be used in preference. .SH NOTES .IX Header "NOTES" If an application wishes to make use of several of these functions for configuration purposes either on a command line or in a file it should consider using the SSL_CONF interface instead of manually parsing options. .SH "RETURN VALUES" .IX Header "RETURN VALUES" \&\fBSSL_CTX_set1_groups()\fR, \fBSSL_CTX_set1_groups_list()\fR, \fBSSL_set1_groups()\fR, \&\fBSSL_set1_groups_list()\fR, and \fBSSL_CTX_get0_implemented_groups()\fR return 1 for success and 0 for failure. .PP \&\fBSSL_get1_groups()\fR returns the number of groups, which may be zero. .PP \&\fBSSL_get0_iana_groups()\fR returns the number of (uint16_t) groups, which may be zero. .PP \&\fBSSL_get_shared_group()\fR returns the NID of shared group \fBn\fR or NID_undef if there is no shared group \fBn\fR; or the total number of shared groups if \fBn\fR is \-1. .PP When called on a client \fBssl\fR, \fBSSL_get_shared_group()\fR has no meaning and returns \-1. .PP \&\fBSSL_get_negotiated_group()\fR returns the NID of the negotiated group used for key exchange, or NID_undef if there was no negotiated group. .SH EXAMPLES .IX Header "EXAMPLES" Assume the server \fIlist\fR is "P\-521:P\-256/P\-384/X25519:ffdhe2048" and client \&\fIlist\fR is "P\-521:*P\-384" when connecting to such a server, meaning that the client supports \f(CW\*(C`P\-521\*(C'\fR but does not send a key share for this group to the server, and the client supports \f(CW\*(C`P\-384\*(C'\fR including key share for this group. With both server and client preference, an HRR will be triggered for \f(CW\*(C`P\-521\*(C'\fR despite the availability of a key share for P\-384, which overlaps with a lower priority server\-side tuple. .PP As a separate example, consider a server \fIlist\fR "A:B/C:D/E:F". Listed in order of highest preference to least, 3 group tuples are created: "A:B", "C:D", and "E:F". Here are some examples of a client \fIlist\fR where setting server/client preference will not change the outcome: .PP \&\- "A:D:*F": Both prefer "A", but the server didn\*(Aqt receive a keyshare for the most\-preferred tuple in which there\*(Aqs at least one group supported by both. Therefore, an HRR is triggered for "A". .PP \&\- "B:*C": Both prefer "B" from the first group tuple "A:B", so an HRR is triggered for "B". .PP \&\- "C:*F": Both prefer "C" from the second group tuple "C:D", so an HRR is triggered for "C". .PP \&\- "C:*D": Even though both prefer "C" over "D", the server will accept the key share for "D". Within a tuple, existing keyshares trump preference order. .PP \&\- "*C:*D": The server accepts the "C" key share. .PP \&\- "F": Even though it is not prepended with a "*", the client will send a key share for "F". The server will then accept the key share for "F". .PP \&\- "*E:C:A": The server prefers "A" from the "A:B" group tuple, so an HRR is triggered for "A". .PP \&\- "*E:B:*A": The server uses the key share for "A". .PP Here are some examples where setting server/client preference will change the result: .PP \&\- "*D:*C" \- Client preference: The server uses the key share for "D". \- Server preference: The server uses the key share for "C". .PP \&\- "B:A:*C" \- Client preference: The server triggers an HRR for "B". For the server, "A" and "B" are considered comparable in security. But because the client prefers "B", the server will trigger an HRR for "B". \- Server preference: The server triggers an HRR for "A". .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fBssl\fR\|(7), \&\fBSSL_CTX_add_extra_chain_cert\fR\|(3), \&\fBSSL_get0_group_name\fR\|(3) .SH HISTORY .IX Header "HISTORY" The curve functions were added in OpenSSL 1.0.2. The equivalent group functions were added in OpenSSL 1.1.1. The \fBSSL_get_negotiated_group()\fR function was added in OpenSSL 3.0.0. .PP Support for ignoring unknown groups in \fBSSL_CTX_set1_groups_list()\fR and \&\fBSSL_set1_groups_list()\fR was added in OpenSSL 3.3. .PP Support for \fBML\-KEM\fR was added in OpenSSL 3.5. .PP OpenSSL 3.5 also introduces support for three \fIhybrid\fR ECDH PQ key exchange TLS groups: \fBX25519MLKEM768\fR, \fBSecP256r1MLKEM768\fR and \&\fBSecP384r1MLKEM1024\fR. They offer CPU performance comparable to the associated ECDH group, though at the cost of significantly larger key exchange messages. The third group, \fBSecP384r1MLKEM1024\fR is substantially more CPU\-intensive, largely as a result of the high CPU cost of ECDH for the underlying \fBP\-384\fR group. Also its key exchange messages at close to 1700 bytes are larger than the roughly 1200 bytes for the first two groups. .PP As of OpenSSL 3.5 key exchange group names are case\-insensitive. .PP \&\fBSSL_CTX_get0_implemented_groups\fR was first implemented in OpenSSL 3.5. .PP Earlier versions of this document described the list as a preference order. However, OpenSSL\*(Aqs behavior as a TLS 1.3 server is to consider \fIall\fR supported groups as comparable in security. .SH COPYRIGHT .IX Header "COPYRIGHT" Copyright 2013\-2026 The OpenSSL Project Authors. All Rights Reserved. .PP Licensed under the Apache License 2.0 (the "License"). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at .