Loading openssl/src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -3106,7 +3106,7 @@ impl SslRef { /// Requires OpenSSL 1.1.1 or newer. #[corresponds(SSL_bytes_to_cipher_list)] #[cfg(ossl111)] pub fn bytes_to_ciphers_stack( pub fn bytes_to_cipher_list( &self, bytes: &[u8], isv2format: bool, Loading openssl/src/ssl/test/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1459,7 +1459,7 @@ fn client_hello() { assert!(ssl.client_hello_ciphers().is_some()); assert!(ssl.client_hello_compression_methods().is_some()); assert!(ssl .bytes_to_ciphers_stack(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2()) .bytes_to_cipher_list(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2()) .is_ok()); CALLED_BACK.store(true, Ordering::SeqCst); Loading Loading
openssl/src/ssl/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -3106,7 +3106,7 @@ impl SslRef { /// Requires OpenSSL 1.1.1 or newer. #[corresponds(SSL_bytes_to_cipher_list)] #[cfg(ossl111)] pub fn bytes_to_ciphers_stack( pub fn bytes_to_cipher_list( &self, bytes: &[u8], isv2format: bool, Loading
openssl/src/ssl/test/mod.rs +1 −1 Original line number Diff line number Diff line Loading @@ -1459,7 +1459,7 @@ fn client_hello() { assert!(ssl.client_hello_ciphers().is_some()); assert!(ssl.client_hello_compression_methods().is_some()); assert!(ssl .bytes_to_ciphers_stack(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2()) .bytes_to_cipher_list(ssl.client_hello_ciphers().unwrap(), ssl.client_hello_isv2()) .is_ok()); CALLED_BACK.store(true, Ordering::SeqCst); Loading