(cipher: &ssl::SslCipherRef)
| 3962 | type CipherTuple = (&'static str, &'static str, i32); |
| 3963 | |
| 3964 | fn cipher_to_tuple(cipher: &ssl::SslCipherRef) -> CipherTuple { |
| 3965 | (cipher.name(), cipher.version(), cipher.bits().secret) |
| 3966 | } |
| 3967 | |
| 3968 | fn cipher_description(cipher: *const sys::SSL_CIPHER) -> String { |
| 3969 | unsafe { |
no test coverage detected