Hi I have an application that is used to sniff the windows https streams. To create the certificate and key file, I used the following commands
1. openssl req -config "openssl.cnf" -new -out SERVER.csr 2. openssl rsa -in privkey.pem -out SERVER.key 3. openssl x509 -in SERVER.csr -out SERVER.cert -req -signkey SERVER.key -days 364 The issue I am facing is that in windows , I an unable to decrypt the privkey.pem ( RSA private key) file. I tried using the PEM_READ_BIOPRIVATEKEY api to decrypt the rsa key, but to no use. Is there any solution for the same ? -- View this message in context: http://old.nabble.com/PEM_read_PrivateKey-throws-error-in-windows-tp33992591p33992591.html Sent from the OpenSSL - Dev mailing list archive at Nabble.com. ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List [email protected] Automated List Manager [email protected]
