|
SSL_get_shared_ciphers(3)
Contents
|
SSL_get_shared_ciphers - Get the shared ciphers from the
SSL connection.
#include <openssl/ssl.h>
char *SSL_get_shared_ciphers(
SSL *s,
char *buf,
int len );
The SSL_get_shared_ciphers() function returns a pointer to
a buffer (*buf) containing a list of shared ciphers.
The function can be used only for SSLv2 connection. It
does not work for SSLv3 and TLSv1.
The SSL_get_shared_ciphers() function returns a pointer to
the buffer (*buf) containing a list of shared ciphers.
This return value (pointer to characters) is the same as
"char *buf", the second argument of this function.
Functions: SSL_get_ciphers(3)
SSL_get_shared_ciphers(3)
[ Back ] |