SSL_get_psk_identity - get PSK client identity and hint
#include <openssl/ssl.h> const char *SSL_get_psk_identity_hint(const SSL *ssl); const char *SSL_get_psk_identity(const SSL *ssl);
OpenSSL SSL_get_psk_identity(3openssl)
NAME
SSL_get_psk_identity, SSL_get_psk_identity_hint - get PSK client
identity and hint
SYNOPSIS
#include <openssl/ssl.h>
const char *SSL_get_psk_identity_hint(const SSL *ssl);
const char *SSL_get_psk_identity(const SSL *ssl);
DESCRIPTION
SSL_get_psk_identity_hint() is used to retrieve the PSK identity hint
used during the connection setup related to SSL object ssl. Similarly,
SSL_get_psk_identity() is used to retrieve the PSK identity used during
the connection setup.
RETURN VALUES
If non-NULL, SSL_get_psk_identity_hint() returns the PSK identity hint
and SSL_get_psk_identity() returns the PSK identity. Both are
NULL-terminated. SSL_get_psk_identity_hint() may return NULL if no PSK
identity hint was used during the connection setup.
Note that the return value is valid only during the lifetime of the SSL
object ssl.
ATTRIBUTES
See attributes(7) for descriptions of the following attributes:
+---------------+--------------------------+
|ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+---------------+--------------------------+
|Availability | library/security/openssl |
+---------------+--------------------------+
|Stability | Pass-through uncommitted |
+---------------+--------------------------+
NOTES
Source code for open source software components in Oracle Solaris can
be found at https://www.oracle.com/downloads/opensource/solaris-source-
code-downloads.html.
This software was built from source available at
https://github.com/oracle/solaris-userland. The original community
source was downloaded from
https://www.openssl.org/source/openssl-1.0.2ze.tar.gz.
Further information about this software can be found on the open source
community website at https://www.openssl.org/.
1.0.2ze 2022-05-03
SSL_get_psk_identity(3openssl)