File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
parsec-openssl-provider-shared/e2e_tests/tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ fn test_handshake_client_authentication_with_no_client_settings() {
84
84
85
85
#[ should_panic]
86
86
#[ test]
87
- fn test_handshake_client_authentication_with_no_client_key ( ) {
87
+ fn test_handshake_client_authentication_with_no_rsa_client_key ( ) {
88
88
let listener = TcpListener :: bind ( "127.0.0.1:0" ) . unwrap ( ) ;
89
89
let addr = listener. local_addr ( ) . unwrap ( ) ;
90
90
@@ -106,7 +106,7 @@ fn test_handshake_client_authentication_with_no_client_key() {
106
106
}
107
107
108
108
#[ test]
109
- fn test_handshake_client_authentication ( ) {
109
+ fn test_handshake_client_authentication_rsa ( ) {
110
110
let socket = TcpListener :: bind ( "127.0.0.1:0" ) . unwrap ( ) ;
111
111
let addr = socket. local_addr ( ) . unwrap ( ) ;
112
112
@@ -156,7 +156,7 @@ fn test_handshake_client_authentication_with_fake_ca() {
156
156
// key, the key management match function should report an error about the mismatched private key and
157
157
// public key from the x509 certificate.
158
158
#[ test]
159
- fn test_client_with_mismatched_key_and_certificate ( ) {
159
+ fn test_client_with_mismatched_rsa_key_and_certificate ( ) {
160
160
let mut ctx_builder = SslContext :: builder ( SslMethod :: tls_client ( ) ) . unwrap ( ) ;
161
161
162
162
ctx_builder
You can’t perform that action at this time.
0 commit comments