Yeah I has to convert all of my P12's to use AES

cd /etc/pki/ovirt-engine/keys/

for E in $(ls *.p12); do

openssl pkcs12 -in $E -out $E.key -nocerts -nodes -passin file:pass.txt

openssl pkcs12 -in $E -out $E.crt -nokeys -nodes -passin file:pass.txt

openssl pkcs12 -in ./$E.crt -inkey ./$E.key -export -out $E.test.p12 -keypbe
aes-256-cbc -certpbe aes-256-cbc -passin file:pass.txt

done

 

You'll also need to make sure you set the file owners and permissions like
the original files.

Attachment: smime.p7s
Description: S/MIME cryptographic signature

_______________________________________________
Users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Privacy Statement: https://www.ovirt.org/privacy-policy.html
oVirt Code of Conduct: 
https://www.ovirt.org/community/about/community-guidelines/
List Archives: 
https://lists.ovirt.org/archives/list/[email protected]/message/CDYP5XBPOJLAHT7NB4XQNK3KX2IRGXBT/

Reply via email to