logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

SSL_get0_group_name - get name of the group that was used for the key agreement of the current TLS

Description

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

History

       This function was added in OpenSSL 3.2.

Name

       SSL_get0_group_name - get 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. See also SSL_get_negotiated_group(3).

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

See Also

ssl(7), SSL_get_negotiated_group(3)

Synopsis

        #include <openssl/ssl.h>

        const char *SSL_get0_group_name(SSL *s);

See Also