revolution-irc icon indicating copy to clipboard operation
revolution-irc copied to clipboard

Implement ECC PKCS#12 certificates

Open DoctorD90 opened this issue 5 years ago • 1 comments

I use certs to login on server; the certificate is based on ECC private key; I converted it to PKCS#12 format but the app couldn't load it; the certificate is usable from other program, so the certificate is well created.

I report commands to reproduce the same certificate:

openssl ecparam -genkey -name prime256v1 -out login.key
openssl req -new -sha512 -key login.key -out login.csr -subj "/CN=User"
openssl req -x509 -sha512 -days 3650 -key login.key -in login.csr -out login.crt
openssl pkcs12 -export -inkey login.key -in login.crt -out login.pkcs12.pfx

DoctorD90 avatar Sep 03 '20 12:09 DoctorD90

presumably i only added RSA support; would have to be looked into

MCMrARM avatar Sep 06 '20 19:09 MCMrARM