| RSA BSAFE SSL-C |
Security protocol components for C |
| Search |
Functions | |
| char* | SSL_state_string (SSL *ssl) |
| Returns a short string indicating the current SSL handshake state for the specified ssl. More... | |
| char* | SSL_rstate_string (SSL *ssl) |
| Returns a short string indicating the state of the read operation of an SSL record currently being performed by the SSL structure ssl. More... | |
| char* | SSL_state_string_long (SSL *ssl) |
| Returns a descriptive message indicating the current SSL handshake state for the SSL connection ssl. More... | |
| char* | SSL_rstate_string_long (SSL *ssl) |
| Returns the full string indicating the state of the read operation of an SSL record currently being performed by the SSL structure ssl. More... | |
| char* | SSL_alert_type_string_long (int value) |
| Returns a textual description of the alert type in string form. More... | |
| char* | SSL_alert_type_string (int value) |
| Returns a textual description of the alert type in a short string form. More... | |
| char* | SSL_alert_desc_string_long (int value) |
| Returns a textual description of the alert value in string form. More... | |
| char* | SSL_alert_desc_string (int value) |
| Returns a textual description of the alert value in a short string form. More... | |
| int | SSL_state (SSL *ssl) |
| Returns the handshake state information for the SSL structure ssl. The state information indicates whether the handshake is the client or server side. More... | |
| int | SSL_reuse (SSL *ssl) |
| Determines if the current SSL session identifier is being reused on the SSL connection ssl. More... | |
|
|
Returns a textual description of the alert value in a short string form. The values are detailed in the Short Description column below. Alert values generated during the handshake are visible to SSL_INFO_CB_T if this callback has been implemented by the developer.
|
|
|
Returns a textual description of the alert value in string form. The values are detailed in the Long Description column below. Alert values generated during the handshake are visible to SSL_INFO_CB_T if this callback has been implemented by the developer.
|
|
|
Returns a textual description of the alert type in a short string form. The values are detailed in the Short Description column below. Alert values generated during the handshake are visible to SSL_INFO_CB_T if this callback has been implemented by the developer.
|
|
|
Returns a textual description of the alert type in string form. The values are detailed in the Long Description column below. Alert values generated during the handshake are visible to SSL_INFO_CB_T if this callback has been implemented by the developer.
|
|
|
Determines if the current SSL session identifier is being reused on the SSL connection ssl. Public-key encryption algorithms are slow. To improve performance, information exchanged during the handshake can be re-used. This process is called session identifier reuse.
|
|
|
Returns a short string indicating the state of the read operation of an SSL record currently being performed by the SSL structure ssl.
|
|
|
Returns the full string indicating the state of the read operation of an SSL record currently being performed by the SSL structure ssl.
|
|
|
Returns the handshake state information for the SSL structure ssl.
|
|
|
Returns a short string indicating the current SSL handshake state for the specified ssl. The string is a six character mnemonic for the full string provided by SSL_state_string_long().
|
|
|
Returns a descriptive message indicating the current SSL handshake state for the SSL connection ssl.
|