Sponsor:

Your company here, and a link to your site. Click to find out more.

SSL_get0_group_name.3ossl - Man Page

get name of the group that was used for the key agreement of the current TLS session establishment

Synopsis

 #include <openssl/ssl.h>

 const char *SSL_get0_group_name(SSL *s);

Description

SSL_get0_group_name() returns the name of the group that was used for the key agreement of the current TLS session establishment.

Return Values

If non-NULL, SSL_get0_group_name() returns the name of the group that was used for the key agreement of the current TLS session establishment. If SSL_get0_group_name() returns NULL, an error occurred; possibly no TLS session has been established.

Note that the return value is valid only during the lifetime of the SSL object ssl.

See Also

ssl(7)

Info

2024-04-04 3.2.1 OpenSSL