A quick snippet useful for testing client certificate authentication against a server:
curl -k https://test.domain.com --key ./client.key --cert ./client.crt -v
or alternatively you can also include the parent CA with:
curl -k https://test.domain.com --key ./client.key --cert ./client.crt --cacert cacert.pem -v
0 comments:
Post a Comment