You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#[error("failed to add root certificate from {path_desc} to trust store: {source}")]
18
+
AddRootCert{
19
+
path_desc:String,
20
+
#[source]
21
+
source: rustls::Error,
22
+
},
23
+
#[error("failed to parse PEM certificate from {file_description}: {source}")]
24
+
ParsePemCert{
25
+
file_description:String,
26
+
#[source]
27
+
source: std::io::Error,
28
+
},
29
+
#[error("failed to build TLS verifier, ensure CA certificates are valid and correctly configured: {source}")]
30
+
BuildVerifier{
31
+
#[source]
32
+
source:VerifierBuilderError,
33
+
},
34
+
#[error("failed to parse client certificate from {file_description}: {source}")]
35
+
ParseClientCert{
36
+
file_description:String,
37
+
#[source]
38
+
source: std::io::Error,
39
+
},
40
+
#[error("failed to parse client private key from {file_description}: {source}")]
41
+
ParseClientKey{
42
+
file_description:String,
43
+
#[source]
44
+
source: std::io::Error,
45
+
},
46
+
#[error("failed to set client authentication using certificate from {cert_path_desc} and private key from {key_path_desc}; ensure the certificate and key are valid: {source}")]
47
+
ClientAuthCert{
48
+
cert_path_desc:String,
49
+
key_path_desc:String,
50
+
#[source]
51
+
source:TlsError,
52
+
},
53
+
#[error("no supported private keys (Sec1, Pkcs8, Pkcs1) found in the provided PEM data for the client private key")]
54
+
NoKeysFound,
55
+
#[error("TLS configuration error: {0}. Please check your TLS settings, including paths to certificates and keys, and ensure they are correctly specified.")]
0 commit comments