@brief Return the SSL cipher id. @return The cipher id which is one of: - SSL_AES128_SHA (0x2f) - SSL_AES256_SHA (0x35) - SSL_RC4_128_SHA (0x05) - SSL_RC4_128_MD5 (0x04)
()
| 93 | * - SSL_RC4_128_MD5 (0x04) |
| 94 | */ |
| 95 | public byte getCipherId() |
| 96 | { |
| 97 | return axtlsj.ssl_get_cipher_id(m_ssl); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * @brief Get the session id for a handshake. |