Hello guys, good day~ I have some question about generating private keys. 1. If I use "openssl genrsa -out my_private_key.key 2048" this command then I will get the encrypted private key or not encrypted key ? because I want to use python ssl module and heard python ssl lib not support encrypted private key for sockets.
2. If I use encrypted key and .crs file to generate a certificate then will certificate be different from being generated with not encrypted key ? 3. "openssl genrsa -des3 -out my_private_key.key 2048" this command will generate a private as well, and more it will ask for password, and what is so differen with "-des3" parameter? 4. How to generate the key and certificate in "PEM format"? Also heard python ssl lib need private key and certificate in PEM format. Thanks. Kay