hurl/packages
Tim Bart 04ebc958c6
This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server.
Example:
```
GET https://localhost:8443/
[Options]
cacert: out/HurlCA.crt
cert: out/client.crt
key: out/client.key

HTTP 200
```

outputs:
```
Request can be run with the following curl command:
* curl 'https://localhost:8443/' --cacert out/HurlCA.crt --cert out/client.crt --key out/client.key
```
2022-11-28 20:33:05 -08:00
..
hurl This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server. 2022-11-28 20:33:05 -08:00
hurl_core This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server. 2022-11-28 20:33:05 -08:00
hurlfmt This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server. 2022-11-28 20:33:05 -08:00