Guest User

Untitled

a guest
Jul 19th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # openssl genrsa -out priv.pem -des3 2048
  2. Generating RSA private key, 2048 bit long modulus
  3. ............................................+++
  4. .....................+++
  5. e is 65537 (0x10001)
  6. Enter pass phrase for priv.pem:
  7. Verifying - Enter pass phrase for priv.pem:
  8.  
  9. # openssl req -new -key priv.pem -out csr.pem
  10. Enter pass phrase for priv.pem: (it asks for password here)
  11. .....
  12.  
  13.  
  14. If using -passout:
  15. # openssl genrsa -out priv.pem -passout pass:passwd 2048
  16. Generating RSA private key, 2048 bit long modulus
  17. ..........+++
  18. .............................................................................................................+++
  19. e is 65537 (0x10001)
  20.  
  21. # openssl req -new -key priv.pem -out csr.pem
  22. You are about to be asked to enter information that will be incorporated
  23. into your certificate request.
  24. ( no prompt to enter password here )
  25. .....
Add Comment
Please, Sign In to add comment