We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f8df9e commit 8b08005Copy full SHA for 8b08005
parsec-openssl-provider-shared/e2e_tests/src/lib.rs
@@ -110,22 +110,22 @@ impl Server {
110
pub struct Client {
111
ssl_method: SslMethod,
112
certificate: Option<String>,
113
- private_key: Option<String>,
+ private_key_name: Option<String>,
114
ca_certificate: Option<String>,
115
ssl_mode: SslVerifyMode,
116
}
117
118
impl Client {
119
pub fn new(
120
cert: Option<String>,
121
- key: Option<String>,
+ key_name: Option<String>,
122
ca: Option<String>,
123
mode: SslVerifyMode,
124
) -> Client {
125
Client {
126
ssl_method: SslMethod::tls_client(),
127
certificate: cert,
128
- private_key: key,
+ private_key_name: key_name,
129
ca_certificate: ca,
130
ssl_mode: mode,
131
0 commit comments