@@ -97,7 +97,7 @@ fn test_handshake_client_authentication_with_no_rsa_client_key() {
97
97
server. accept ( listener) ;
98
98
99
99
let client = Client :: new (
100
- Some ( String :: from ( "../../tests/tls/client/client_cert .pem" ) ) ,
100
+ Some ( String :: from ( "../../tests/tls/client/parsec_rsa .pem" ) ) ,
101
101
None ,
102
102
Some ( String :: from ( "../../tests/tls/ca/ca_cert.pem" ) ) ,
103
103
SslVerifyMode :: PEER ,
@@ -119,7 +119,7 @@ fn test_handshake_client_authentication_rsa() {
119
119
server. accept ( socket) ;
120
120
121
121
let client = Client :: new (
122
- Some ( String :: from ( "../../tests/tls/client/client_cert .pem" ) ) ,
122
+ Some ( String :: from ( "../../tests/tls/client/parsec_rsa .pem" ) ) ,
123
123
Some ( String :: from ( "PARSEC_TEST_RSA_KEY" ) ) ,
124
124
Some ( String :: from ( "../../tests/tls/ca/ca_cert.pem" ) ) ,
125
125
SslVerifyMode :: PEER ,
@@ -142,7 +142,7 @@ fn test_handshake_client_authentication_with_fake_ca() {
142
142
server. accept ( socket) ;
143
143
144
144
let client = Client :: new (
145
- Some ( String :: from ( "../../tests/tls/fake_client/client_cert .pem" ) ) ,
145
+ Some ( String :: from ( "../../tests/tls/fake_client/parsec_rsa .pem" ) ) ,
146
146
Some ( String :: from ( "PARSEC_TEST_RSA_KEY" ) ) ,
147
147
Some ( String :: from ( "../../tests/tls/fake_ca/ca_cert.pem" ) ) ,
148
148
SslVerifyMode :: PEER ,
@@ -159,7 +159,7 @@ fn test_client_with_mismatched_rsa_key_and_certificate() {
159
159
160
160
ctx_builder
161
161
. set_certificate_file (
162
- String :: from ( "../../tests/tls/fake_client/client_cert .pem" ) ,
162
+ String :: from ( "../../tests/tls/fake_client/parsec_rsa .pem" ) ,
163
163
SslFiletype :: PEM ,
164
164
)
165
165
. unwrap ( ) ;
0 commit comments