-
i have a pfx file and i don't know how to correctly use it |
Beta Was this translation helpful? Give feedback.
Answered by
jcamiel
Mar 20, 2024
Replies: 1 comment
-
Hi @Taoaozw I'm not a super specialist of certificate but can you convert your p12 file to a certificate and key file first: $ openssl pkcs12 -in mycert.p12 -out file.key.pem -nocerts -nodes
$ openssl pkcs12 -in mycert.p12 -out file.crt.pem -clcerts -nokeys Then use $ hurl --cert file.crt.pem --key file.key.pem test.hurl ? |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Taoaozw
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Taoaozw
I'm not a super specialist of certificate but can you convert your p12 file to a certificate and key file first:
Then use
--cert
and--key
Hurl options :?