1

I am trying to install an SSL certificate on my WAMP server.

W:\wamp\bin\apache\apache2.2.22\bin>echo %OPENSSL_CONF%
w:\wamp\bin\apache\apache2.2.22\conf\openssl.cnf

W:\wamp\bin\apache\apache2.2.22\bin>openssl req -x509 -new -out my.root.ca.crt -
keyout my.root.ca.key -days 3650
Loading 'screen' into random state - done
Generating a 1024 bit RSA private key
....++++++
........++++++
writing new private key to 'my.root.ca.key'
Enter PEM pass phrase:

Enter PEM pass phrase is where I am stuck. It won't let me type anything. And also, am I supposed to come up with my own pass phrase and tell this program to use that, or am I supposed to have a pre-determined pass phrase set by... well... apache, openssl, wamp, etc.

Flimzy
  • 2,375
  • 17
  • 26
ShoeLace1291
  • 119
  • 1
  • 1
  • 2
  • Try typing something and hitting enter? It's not popping up `*` characters as you type but it should still be getting your input. – Shane Madden Dec 03 '13 at 05:36

1 Answers1

4

The keystrokes are recorded but nothing is echoed back to the screen. Type the passphrase you want and press enter. You'll be prompted to re-enter the same string to confirm.

bahamat
  • 6,193
  • 23
  • 28
  • 1
    It's a standard design paradigm for terminals. It wasn't until many years after this design was standardized that GUIs started printing asterisks or bullets instead of the password characters. – bahamat Dec 08 '13 at 23:12