hi...i created a certificate for my own use to try signing binaries...i get a security warning when i verify my file through a cpp code.but when i verify winword.exe, i gives a successful output...
i m using openssl (version openssl-0.9.8h-1-doc) to create certificates...following are the commands by which i created my certificate... //to create .pvk key file openssl genrsa -des3 -out my.pvk //to generate self signed certificate openssl req -new -key my.pvk -x509 -out my.crt -extensions v3_ca -config openssl.cnf //to generate .pfx file openssl pkcs12 -export -in my.crt -inkey my.pvk -passout pass:my -out my.pfx i think i am missng something in the command for creating certificates.can someone plz help me??? if you require any more information regarding the process then plz tell me...
