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.