GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
SSL_GET_CURRENT_CIPHER(3) FreeBSD Library Functions Manual SSL_GET_CURRENT_CIPHER(3)

SSL_get_current_cipher, SSL_get_cipher, SSL_get_cipher_name, SSL_get_cipher_bits, SSL_get_cipher_versionget SSL_CIPHER of a connection

#include <openssl/ssl.h>

const SSL_CIPHER *
SSL_get_current_cipher(const SSL *ssl);

const char *
SSL_get_cipher(const SSL *ssl);

const char *
SSL_get_cipher_name(const SSL *ssl);

int
SSL_get_cipher_bits(const SSL *ssl, int *np);

char *
SSL_get_cipher_version(const SSL *ssl);

() returns a pointer to an SSL_CIPHER object containing the description of the actually used cipher of a connection established with the ssl object. See SSL_CIPHER_get_name(3) for more details.

() obtains the name of the currently used cipher. SSL_get_cipher() is identical to SSL_get_cipher_name().

() obtains the number of secret/algorithm bits used and () returns the protocol name.

(), SSL_get_cipher_name(), SSL_get_cipher_bits(), and SSL_get_cipher_version() are implemented as macros.

SSL_get_current_cipher() returns the cipher actually used, or NULL if no session has been established.

ssl(3), SSL_CIPHER_get_name(3)

SSL_get_cipher() appeared in SSLeay 0.4 or earlier. SSL_get_cipher_bits() first appeared in SSLeay 0.6.4. SSL_get_cipher_name() and SSL_get_cipher_version() first appeared in SSLeay 0.8.0. SSL_get_current_cipher() first appeared in SSLeay 0.8.1. These functions have been available since OpenBSD 2.4.

March 27, 2018 FreeBSD 14.3-RELEASE

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.