Skip to content

Commit 3482c47

Browse files
authored
client: clarify encoding of ClientTlsConfig field data (#683)
1 parent 389337b commit 3482c47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ pub struct TlsConfig {
151151
/// If using mTLS, both the client cert and private key must be specified, this contains them.
152152
#[derive(Clone)]
153153
pub struct ClientTlsConfig {
154-
/// The certificate for this client
154+
/// The certificate for this client, encoded as PEM
155155
pub client_cert: Vec<u8>,
156-
/// The private key for this client
156+
/// The private key for this client, encoded as PEM
157157
pub client_private_key: Vec<u8>,
158158
}
159159

0 commit comments

Comments
 (0)