Skip to content

Commit

Permalink
update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sunny-chung committed Dec 19, 2023
1 parent 343ebfb commit 91e0565
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/features/ssl-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ Accepted formats for a private key are:
- Unencrypted PKCS #8 DER
- Password-encrypted PKCS #8 DER

An unencrypted PKCS #8 DER key file can be converted from a PEM file using OpenSSL.
```
openssl pkcs8 -topk8 -in clientKey.pem -out clientKey.pkcs8.der -outform DER -nocrypt
```

A password-encrypted PKCS #8 DER key file can be converted from a PEM file using OpenSSL.
```
openssl pkcs8 -topk8 -in clientKey.pem -out clientKey.pkcs8.encrypted.der -outform DER
```


## Disable SSL Verification

SSL certificate verification can be disabled. By default, SSL verification is enabled.
Expand Down

0 comments on commit 91e0565

Please sign in to comment.