RE: How to convert .P12 Certificate (ECC crypted) to .PEMs

2022-05-25 Thread Lynch, Pat
Try adding the following command line arguments: -outform pem From: openssl-users On Behalf Of Beilharz, Michael Sent: Wednesday, May 25, 2022 3:10 AM To: 'openssl-users@openssl.org' Subject: How to convert .P12 Certificate (ECC crypted) to .PEMs CAUTION: Email originated externally. Do

How to convert .P12 Certificate (ECC crypted) to .PEMs

2022-05-25 Thread Beilharz, Michael
Hi OpenSSL Community, actual I have to convert a .P12 certificate (RSA crypted/created) into .PEM certificates, I use the following commands: openssl pkcs12 -in "inCert.p12" -clcerts -nokeys -out "outCert.pem" -passin pass: openssl pkcs12 -in "outCert.pem" -nocerts -out "outTmpKey.pem" -passin

Re: using TLS (>1.2) with more than one certificate

2022-05-25 Thread Dirk-Willem van Gulik
On 25 May 2022, at 09:16, wrote: > I’ve a server application and need to support RSA and ECC clients at the same > time. > I don’t know which certificate from my local keystore I have to send to the > client, btw I have a rsa and a ecc certificate in my keystore already. > I don’t know with

Re: using TLS (>1.2) with more than one certificate

2022-05-25 Thread Dmitry Belyavsky
Dear Tobias, Does code in s_server application help? On Wed, May 25, 2022 at 9:17 AM wrote: > I’ve a server application and need to support RSA and ECC clients at the > same time. > > I don’t know which certificate from my local keystore I have to send to > the client, btw I have a rsa and a

using TLS (>1.2) with more than one certificate

2022-05-25 Thread Tobias.Wolf
I've a server application and need to support RSA and ECC clients at the same time. I don't know which certificate from my local keystore I have to send to the client, btw I have a rsa and a ecc certificate in my keystore already. I don't know with which certificate (rsa or ecc) a client comes