As HAL-9000 once said: "This sort of thing has cropped up before, and it has always been due to human error".I am not sure if the programmer "thought long meant 64-bit because he was on a native 64-bit architecture" or "was unaware of the fact that long long is required to declare a 64-bit variable". This is why the IETF changed the type of that variable to uint64_t (unsigned integer 64-bit) which is now the source of much frustration as new programmers learn the c-language.
SSL/TLS cryptography is based upon:
Trusted Third Parties
Nerd Stuff
Western-hemispheric conservatives are continually questioning the value of education then trying to implement austerity measures for the purpose of lowering taxes (BTW, we often see ). For a decade starting in 2006, Canadian conservatives attempted to put an end to all theoretical research in favor of applied research. None of those people would ever click this next link which I placed here for all nerds because the modern RSA cryptographic system is based upon Fermat's Little Theorem published in 1640.note: Connecting Windows to Linux? Click here for Windows instructions
The OpenSSL CLI (command line interpreter) exists for the following reasons:Apps and Tools
|
usual file locations | notes |
program | /usr/bin/openssl | |
config | /etc/pli/tls/openssl.cnf | always make a backup copy of this one |
certificate(s) | /etc/pki/tls/certs | public certificates live here |
key(s) | /etc/pki/tls/private | private keys live here |
Like most security software, OpenSSL seems deliberately unfriendly so does not include verbose help. You must read the official CLI docs or type something illegal then hope for the best.
Legend (for all my examples): <sr> = system response <ur> = user response <enter> = hit the enter key (in my newer examples this is "assumed") <ctrl-c> = hit "control c" <ctrl-z> = hit "control z" <space> = hit the space bar <tab> = hit the tab key
# = start of BASH comment
\ = line continuation character in BASH -------------------------------------------------------- <sr> [prompt] # my pseudo BASH prompt <ur> openssl # start the OpenSSL CLI application <sr> OpenSSL> # this is the application prompt
<ur> version # display version (add -a for all) <sr> OpenSSL 1.0.2k-fips 26 Jan 2017 # OpenSSL> #
<ur> help # request help (an illegal command)
# OpenSSL-3 note: not illegal
<sr> openssl:Error: 'help' is an invalid command. ...major topics and sub-topics... # read this stuff OpenSSL> # application prompt
<ur> s_client -? # request s_client specific help
# OpenSSL-3 note: use "-h" <sr> unknown option -? # usage: s_client args # ...s_client arguments are displayed... # OpenSSL> #
<ur> exit # exit to BASH <sr> [prompt] # my BASH prompt
<ur> openssl list-standard-commands # <sr> { displays available commands } # read this [prompt] #
<ur> openssl list-message-digest-commands # <sr> { displays available digests } # read this [prompt] #
<ur> openssl list-cipher-commands # <sr> { display available ciphers } # read this [prompt] #
<ur> openssl no-rsa # is 'rsa' available? <sr> rsa # yes, 'rsa' is available [prompt] #
<ur> openssl no-dsa # is 'dsa' available? <sr> dsa # yes, 'dsa' is available [prompt] #
<ur> openssl no-yada # is 'yada' available? <sr> no-yada # no, 'yada' is not available [prompt] #
<ur> openssl ciphers -? # <sr> usage: ciphers args -v - verbose mode, a textual listing of the SSL/TLS ciphers in OpenSSL -V - even more verbose (OpenVMS users enter -"V" to preserve case) -ssl2 - SSL2 mode -ssl3 - SSL3 mode -tls1 - TLS1 mode [prompt]
<ur> openssl ciphers -ssl2 # display available ssl2 ciphers <sr> bla...bla...bla... # might be an error message in 2014 [prompt]
<ur> openssl ciphers -ssl3 # display available ssl3 ciphers <sr> bla...bla...bla... # might be an error message in 2020 [prompt]
<ur> openssl ciphers -tls1 # display available tls1 ciphers <sr> bla...bla...bla... # [prompt]
<ur> openssl ciphers -v # display all available ciphers <sr> bla...bla...bla... # 100 lines is typical [prompt]
<ur> openssl ciphers -v | grep -i SSL3 # display SSL3-related stuff <sr> bla...bla...bla... # 60 lines is typical [prompt]
<ur> openssl ciphers -v | grep -i TLS1 # display TLS1-related stuff bla...bla...yada... # 35 lines is typical [prompt]
1) This content of this section is more of an academic/pedagogical nature 2) Click skip this section if you are in a hurry to solve a connectivity problem
3) The following examples manipulate files rather than data streams but you will get the general idea 4) Anything typed into the OpenSSL CLI can also be done from the OpenSSL C-API
exercise-01 "encrypt with base64" ================================= <sr> [prompt] # my BASH prompt <ur> echo \ # use BASH...
"These are the voyages of the starship Enterprise" \ # to insert this text...
> hack1a.txt # into this new file
[prompt] #
<sr> cat hack1a.txt # test the file
"These are the voyages of the starship Enterprise" # [prompt] #
<ur> openssl enc -base64 -in hack1a.txt # encrypt using base64 (out to screen) <sr> VGhlc2UgYXJlIHRoZSB2b3lhZ2VzIG9mIHRoZSBzdGFyc2hpcCBFbnRlcnByaXNl Cg== [prompt]
<ur> openssl enc -base64 -in hack1a.txt -out hack1b.txt # repeat command but output to a file <sr> [prompt] # no news is good news :-)
<ur> openssl enc -base64 -d -in hack1b.txt # now decrypt the file <sr> These are the voyages of the starship Enterprise # success... [prompt] Notes: 1) As Philippe Camacho properly pointed out, while "base64" is listed as a cipher, it is not a form of secret encryption since it does not support the use of a secret key. But it does prove that this part of the CLI is working properly when "base64" is treated as a module. 2) type "openssl list-cipher-commands" to see a list of ciphers offered by your installed product. Notice that the listing does include "base64" 3) One of the ciphers is "des3" which we will use in the next exercise 4) Newer versions of OpenSSL also include "base64" as a command to use in place of "enc"
exercise-02 "encrypt with des3" =============================== <sr> [prompt] # my BASH prompt <ur> echo \ # use BASH... "To boldly go where no man has gone before" \ # to insert this text...
> hack2a.txt # into this new file <sr> [prompt] #
<ur> cat hack2a.txt #
<sr> "To boldly go where no man has gone before" #
[prompt] #
<ur> openssl enc -des3 -in hack2a.txt -out hack2b.bin # encrypt file using des3 (output to file) <sr> enter des-ede3-cbc encryption password: # prompting for a mandatory KEY <ur> secret789<enter> # you will be typing this blind (no echo) <sr> Verifying - enter des-ede3-cbc encryption password: # prompting for KEY verification <ur> secret789<enter> # you will be typing this blind (no echo) <sr> [prompt] # no news is good news :-)
<ur> hexdump -C hack2b.bin # more hacking (see note #4 below) <sr> 00000000 53 61 6c 74 65 64 5f 5f 92 fd 20 ff 8f 10 72 f7 |Salted__.. ...r.| 00000010 65 c0 af d0 4b cb 96 47 44 ea fe 26 9c 62 7d d3 |e...K..GD..&.b}.| 00000020 fc 34 e0 57 6d cc 79 71 f4 94 51 ff be 12 0a 75 |.4.Wm.yq..Q....u| 00000030 88 d1 30 6d aa d8 f9 86 d9 67 a4 0e 7e c8 be e6 |..0m.....g..~...| 00000040 88 83 a2 47 04 06 c6 92 |...G....| 00000048 [prompt]
<ur> openssl enc -des3 -d -in hack2b.bin # decrypt message file (out to screen) <sr> enter des-ede3-cbc decryption password: # <ur> secret789<enter> # you will be typing this blind (no echo) <sr> To boldly go where no man has gone before # yay! [prompt]
<ur> openssl enc -des3 -d -in hack2b.bin -k secret789 # decrypt without prompting <sr> To boldly go where no man has gone before # [prompt]
<ur> openssl enc -des3 -d -in hack2b.bin -k "secret789" # double quotes work as well <sr> To boldly go where no man has gone before [prompt]
<ur> echo \ <enter> # use BASH...
"secret789" \ <enter> # to insert this text...
> hack2c.txt <enter> # into this pass-phrase file <sr> [prompt] #
<ur> openssl enc -des3 -d -in hack2b.bin -pass file:hack2c.txt # decrypt (password from file) <sr> To boldly go where no man has gone before [prompt]
<ur> openssl enc -des3 -d -in hack2b.bin -pass pass:secret789 # decrypt (inline password) <sr> To boldly go where no man has gone before [prompt] Notes: 1) the "encryption password" is really a KEY which is used to both encrypt and decrypt 2) be very careful when you enter the pass phrase because some hidden characters (like <tab> and <space>) are processed as-is; for example, these are all legal, but different, inputs a) secret789<space> b) secret789<space><space> c) <space>secret789<space> d) <tab>secret789<space> 3) if you enter any double-quote characters at the interactive passphrase prompt they will be used to
encrypt but it will be impossible to decrypt using the -k option which first strips quotes before
processing
4) Notice the embedded phrase "Salted__" which is always present. Salt (randomized 64-bit data stored
in the file) is combined with pepper (data not stored in the file (the pass phrase)) to cause every
encryption of the same data to produce different results. This used to stop dictionary hacks. Try it
yourself: every time you type "openssl enc -des3" you will produce a different result. Now go back
and store just a lower case 'a' as plain text then use a lower case 'a' as the pass phrase. The
result will always contain 24-bytes.
5) Note: SALT is really a combination of the IV + the key which is generated from the passphrase
*** And Now For a Little Theory *** RSA Notes: 1) RSA encryption/decryption is asymmetric and so requires two keys (one public, one private) 2) RSA keys are based upon upon the product of two carefully chosen prime numbers 3) https://en.wikipedia.org/wiki/RSA_(cryptosystem) RSA Data: d = private key n = public key e = 65537 (constant with RSA) c = m^e mod n (formula for cipher text)
m = c^d mod n (formula for message text)
exercise-03 "create a new 32-bit key" ===================================== Notes: 32-bits is too small for a certificate but okay for this demo on primes <sr> [prompt] # my BASH prompt <ur> openssl genrsa -out hack3a.key 32 # create a small 32-bit key <sr> Generating RSA private key, 32 bit long modulus .+++++++++++++++++++++++++++ .+++++++++++++++++++++++++++ e is 65537 (0x10001) [prompt]
<ur> openssl rsa -in hack3a.key -text -noout # interpret the key file <sr> Private-Key: (32 bit) modulus: 4057358269 (0xf1d65fbd) # 32-bit public key publicExponent: 65537 (0x10001) # same every time privateExponent: 1322158157 (0x4ece884d) prime1: 65123 (0xfe63) # different every genrsa prime2: 62303 (0xf35f) # different every genrsa exponent1: 51313 (0xc871) exponent2: 47415 (0xb937) coefficient: 60666 (0xecfa) [prompt] Notes: 65123 x 62303 = 4057358269 # public key (product of two primes)
exercise-04 "create a new 512-bit key (store it in a file)" ===========================================================
caveat: 512 is too small for use in 2021. 2028 would be a better choice
<sr> [prompt] # my BASH prompt <ur> openssl genrsa -out hack4a.key 512 # 512 bits just for this demo <sr> Generating RSA private key, 512 bit long modulus ......++++++++++++ .....++++++++++++ e is 65537 (0x10001) [prompt]
<ur> cat hack4a.key # view raw ASCII data <sr> -----BEGIN RSA PRIVATE KEY----- MIIBOgIBAAJBAKIwjuJiJJalNN6uQYW+JAn26uipqT8/VvDNIGhqJDxrI2wMj5sN cWn5MmQsZFdl/pxioQvlsdFb8Idk1ZsLc9kCAwEAAQJAVVzTRyk6cqM/AVibmcWq eCgiGRR6xJQUsSZ1QR9kNPukKeW7wOw/rhJgbO+xZXgzJ6zg06+nNg4UOCsUOUyg kQIhAMv1pMCsvNHGjm/IfI/8Z+6FP5kFJVrEWrGApYEgfjw9AiEAy5KQhuH3DYm1 H3W9AhZb0VjyFpsjn0ZDCdM5GpnKg80CIAosbZRiyWRZWB+BS51PBMwj/2EdnZhi dPenqBnByiotAiBbcnt6HAffDP1QJJPDXEfiwxH9FbPq2KVExJ3iVTOkAQIhAMvF pY+dUiDSWk6sC1MX+fASe/Eu5oA9CV0q7BLNt/VQ -----END RSA PRIVATE KEY----- [prompt]
<ur> openssl rsa -in hack4a.key -text -noout # interpret the key file <sr> Private-Key: (512 bit) # this is a private key file modulus: # but this is our public key 00:a2:30:8e:e2:62:24:96:a5:34:de:ae:41:85:be: # "00:" is just padding 24:09:f6:ea:e8:a9:a9:3f:3f:56:f0:cd:20:68:6a: 24:3c:6b:23:6c:0c:8f:9b:0d:71:69:f9:32:64:2c: 64:57:65:fe:9c:62:a1:0b:e5:b1:d1:5b:f0:87:64: d5:9b:0b:73:d9 # 64 x 8 = 512 bits publicExponent: 65537 (0x10001) privateExponent: 55:5c:d3:47:29:3a:72:a3:3f:01:58:9b:99:c5:aa: 78:28:22:19:14:7a:c4:94:14:b1:26:75:41:1f:64: 34:fb:a4:29:e5:bb:c0:ec:3f:ae:12:60:6c:ef:b1: 65:78:33:27:ac:e0:d3:af:a7:36:0e:14:38:2b:14: 39:4c:a0:91 prime1: 00:cb:f5:a4:c0:ac:bc:d1:c6:8e:6f:c8:7c:8f:fc: 67:ee:85:3f:99:05:25:5a:c4:5a:b1:80:a5:81:20: 7e:3c:3d prime2: 00:cb:92:90:86:e1:f7:0d:89:b5:1f:75:bd:02:16: 5b:d1:58:f2:16:9b:23:9f:46:43:09:d3:39:1a:99: ca:83:cd exponent1: 0a:2c:6d:94:62:c9:64:59:58:1f:81:4b:9d:4f:04: cc:23:ff:61:1d:9d:98:62:74:f7:a7:a8:19:c1:ca: 2a:2d exponent2: 5b:72:7b:7a:1c:07:df:0c:fd:50:24:93:c3:5c:47: e2:c3:11:fd:15:b3:ea:d8:a5:44:c4:9d:e2:55:33: a4:01 coefficient: 00:cb:c5:a5:8f:9d:52:20:d2:5a:4e:ac:0b:53:17: f9:f0:12:7b:f1:2e:e6:80:3d:09:5d:2a:ec:12:cd: b7:f5:50 [prompt]
exercise-05 "create a CSR (certificate signing request)" ======================================================== notes: 1) use the 512-bit key file created in exercise-04 2) copy/use of file openssl.cnf is not usually necessary
<sr> [prompt] # my BASH prompt <ur> cp /etc/pli/tls/openssl.cnf openssl.cnf <enter> # OPTIONAL copy template <sr> [prompt]
<ur> openssl req \ # this is a request
-new \
-key hack4a.key \
-out hack5b.csr \
-config openssl.cnf <enter> # OPTIONAL <sr> You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:CA # my responses are in red State or Province Name (full name) []:Ontario # Locality Name (eg, city) [Default City]:Waterloo # Organization Name (eg, company) []:Neil Rieck # I am not a business Organizational Unit Name (eg, section) []:Neil Rieck # Common Name (eg, YOUR name) [server]:neilrieck.net # Email Address []:n.rieck@bell.net Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []:<enter> An optional company name []:<enter> [prompt] <ur> cat hack5b.csr # view CSR as raw ASCII data <sr> -----BEGIN CERTIFICATE REQUEST----- MIIBdDCCAR4CAQAwgbgxCzAJBgNVBAYTAkNBMRAwDgYDVQQIEwdPbnRhcmlvMREw DwYDVQQHEwhXYXRlcmxvbzElMCMGA1UEChMcVW5pdGVkIEZlZGVyYXRpb24gb2Yg UGxhbmV0czETMBEGA1UECxMKU3RhciBGbGVldDEZMBcGA1UEAxMQSmVhbi1MdWMg UGlja2FyZDEtMCsGCSqGSIb3DQEJARYeamVhbi1sdWMucGljYXJkQHN0YXItZmxl ZXQudWZwMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKIwjuJiJJalNN6uQYW+JAn2 6uipqT8/VvDNIGhqJDxrI2wMj5sNcWn5MmQsZFdl/pxioQvlsdFb8Idk1ZsLc9kC AwEAAaAAMA0GCSqGSIb3DQEBBQUAA0EAILOaqUUSsb0vgTyXqUKsBi12mgSbsLgu rZEEyu0gSsTdVIkkwkVvhavYpxCENbCqiRxH+uHZLkYvbTTfmvUapA== -----END CERTIFICATE REQUEST----- [prompt]
<ur> openssl req -noout -text -in hack5b.csr # view interpreted CSR data <sr> Certificate Request: Data: Version: 0 (0x0) Subject:Subject: C=CA, ST=Ontario, L=Waterloo, O=Neil Rieck, OU=Neil Rieck, CN=neilrieck.net/emailAddress=n.rieck@bell.net Subject Public Key Info: Public Key Algorithm: rsaEncryption RSA Public Key: (512 bit) Modulus (512 bit): # public key 00:a2:30:8e:e2:62:24:96:a5:34:de:ae:41:85:be: 24:09:f6:ea:e8:a9:a9:3f:3f:56:f0:cd:20:68:6a: 24:3c:6b:23:6c:0c:8f:9b:0d:71:69:f9:32:64:2c: 64:57:65:fe:9c:62:a1:0b:e5:b1:d1:5b:f0:87:64: d5:9b:0b:73:d9 Exponent: 65537 (0x10001) Attributes: a0:00 Signature Algorithm: sha1WithRSAEncryption 20:b3:9a:a9:45:12:b1:bd:2f:81:3c:97:a9:42:ac:06:2d:76: 9a:04:9b:b0:b8:2e:ad:91:04:ca:ed:20:4a:c4:dd:54:89:24: c2:45:6f:85:ab:d8:a7:10:84:35:b0:aa:89:1c:47:fa:e1:d9: 2e:46:2f:6d:34:df:9a:f5:1a:a4 [prompt]
exercise-06 "create a self-signed certificate" caveat: modern browsers reject these BUT can be used to test the OpenSSL CLI client ===================================================================================
notes: 1) use of file "openssl.cnf" is not usually necessary
<sr> [prompt] # my BASH prompt <ur> openssl req \ # this is a signing request -new \ # -x509 \ # x509 as a switch indicates "self signed" -days 365 \ # this will expire in one year -set_serial 20160101 \ # Here I used ccyymmdd -key hack4a.key \ # use -keyout to create/use a new key -out hack6b.crt \ # certificate data will be written here
-config openssl.cnf # OPTIONAL <sr> You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [AU]:CA # my responses in RED (CA=Canada) State or Province Name (full name) []:Ontario # Canada has provinces Locality Name (eg, city) [Default City]:Waterloo Organization Name (eg, company) []:Neil Rieck # I am not a business Organizational Unit Name (eg, section) []:Neil Rieck Common Name (eg, YOUR name) [server]:neilrieck.net # Email Address []:n.rieck@bell.net # [prompt] <ur> openssl x509 -in hack6b.crt -text -noout # let's see it (processed) <sr> Certificate: Data: Version: 3 (0x2) Serial Number: 20160101 (0x1339e65) Signature Algorithm: sha1WithRSAEncryption Issuer: C=CA, ST=Ontario, L=Waterloo, O=Neil Rieck, OU=Neil Rieck, CN=neilrieck.net/emailAddressn.rieck@synpatico.ca Validity Not Before: Jan 1 21:06:15 2016 GMT Not After : Dec 31 21:06:15 2016 GMT Subject: C=CA, ST=Ontario, L=Waterloo, O=Neil Rieck, OU=Neil Rieck, CN=neilrieck.net/emailAddressn.rieck@synpatico.ca Subject Public Key Info: Public Key Algorithm: rsaEncryption RSA Public Key: (512 bit) Modulus (512 bit): 00:a2:30:8e:e2:62:24:96:a5:34:de:ae:41:85:be: 24:09:f6:ea:e8:a9:a9:3f:3f:56:f0:cd:20:68:6a: 24:3c:6b:23:6c:0c:8f:9b:0d:71:69:f9:32:64:2c: 64:57:65:fe:9c:62:a1:0b:e5:b1:d1:5b:f0:87:64: d5:9b:0b:73:d9 Exponent: 65537 (0x10001) X509v3 extensions: X509v3 Subject Key Identifier: 83:79:4A:B8:D5:ED:C4:C5:58:A8:4B:0F:07:E6:8B:FB:A3:22:19:9C X509v3 Authority Key Identifier: keyid:83:79:4A:B8:D5:ED:C4:C5:58:A8:4B:0F:07:E6:8B:FB:A3:22:19:9C DirName:/C=CA/ST=Ontario/L=Waterloo /O=United Federation of Planets /OU=Star Fleet /CN=neilrieck.net/emailAddressn.rieck@synpatico.ca serial:01:33:9E:65 X509v3 Basic Constraints: CA:TRUE Signature Algorithm: sha1WithRSAEncryption 08:36:67:15:01:c4:8c:e6:2d:10:de:ed:bb:13:4f:cb:9d:4f: 9a:c9:8b:61:ee:84:16:e8:9b:0f:db:a5:05:c7:d5:94:e6:9b: b1:0f:40:d5:bc:be:09:75:5e:7a:33:46:f7:3a:4c:c2:8b:61: c2:85:ad:a0:f2:cf:00:d2:e1:0d [prompt] <ur> cat hack6b.crt # let's see it (raw) <sr> <...hex dump...> #
exercise-7 "certificates: compound operations, private companies AND development platforms" operations: 1) create a CA (certificate authority) key 2) create a CA (certificate authority) certificate with v3 extensions 3) create a CSR (certificate signing request) with v3 extensions 4) use the CA certificate to sign the CSR with v3 extensions ===================================================================== coming soon (it works on my server) -or- follow the steps documented here: https://www.feistyduck.com/library/openssl-cookbook/ Starts on page 39 of the free PDF
Notes:
Connecting to Twitter
<sr> [prompt] # my BASH prompt <ur> openssl s_client -connect www.twitter.com:443 -ssl3 # connect to Twitter
# note: -ssl3 should not work in 2023 <sr> ...handshake verbage... # bla...bla...bla... --- # your s_client prompt <ur> GET / HTTP/1.0<enter> # get default document; use HTTP 1.0 <enter> # signal end of HTTP header <sr> HTTP/1.0 200 OK # response Date: Fri, 22 Jun 2012 23:16:38 GMT # Status: 200 OK # Pragma: no-cache # Content-Type: text/html; charset=UTF-8 #
Connecting to Google USA (non-USA sites will be redirected)
<sr> [prompt] # <ur> openssl s_client -connect www.google.com:443 -ssl3 # connect to Google USA
# note: -ssl3 should not work in 2023 <sr> ...handshake verbage... # bla...bla...bla... --- # your s_client prompt <ur> GET / HTTP/1.0<enter> # get default document; use HTTP 1.0 <enter> # signal end of HTTP header <sr> HTTP/1.0 302 Found # 302 = moved Location: https://www.google.ca/ # so redirect to Canada Cache-Control: private Content-Type: text/html; charset=UTF-8 Set-Cookie: expires=; expires=Mon, 01-Jan-1990 00:00:00 GMT; path=/; domain=www.google.com
Connecting to Google Canada (non-Canadian sites will be redirected)
<sr> [prompt] # <ur> openssl s_client -connect www.google.ca:443 -ssl3 # connect to Google Canada
# note: -ssl3 should not work in 2023 ...handshake verbage... # bla...bla...bla... --- # your s_client prompt <ur> GET / HTTP/1.1<enter> # okay so let's try HTTP/1.1 host: www.google.ca:443<enter> # need this line for HTTP/1.1 <enter> # signal end of HTTP header <sr> HTTP/1.1 200 OK # Set-Cookie: NID=61=H7WfG9OQ6uHDvVU8OJyt_Z4x8a4cj0DUpLUfH9D9eeKVou1FwaP8ok16 vDlgV3sX1JPzrd3G8tNc3mDgbdPZy8mGnmpKJ3WCKHVT6gbCV8Z56rKIVgXokgJkptJZ-i00; expires=Sat, 22-Dec-2012 22:51:17 GMT; path=/; domain=.google.ca; HttpOnly Date: Fri, 22 Jun 2012 22:51:17 GMT Expires: -1 Cache-Control: private, max-age=0 Content-Type: text/html; charset=windows-1252 Set-Cookie: PREF=ID=3ba285f540771657:FF=0:TM=1340405477:LM=1340405477:S=TpABG903GxV7Ufhg; expires=Sun, 22-Jun-2014 22:51:17 GMT; path=/; domain=.google.ca Set-Cookie: NID=61=H7WfG9OQ6uHDvVU8OJyt_Z4x8a4cj0DUpLUfH9D9eeKVou1FwaP8ok16vDlgV3sX1JPzrd 3G8tNc3mDgbdPZy8mGnmpKJ3WCKHVT6gbCV8Z56rKIVgXokgJkptJZ-i00; expires=Sat, 22-Dec-2012 22:51:17 GMT; path=/; domain=.google.ca; HttpOnly P3P: CP="This is not a P3P policy! See http://www.google.com/support/accounts /bin/answer.py?hl=en&answer=151657 for more info." Server: gws X-XSS-Protection: 1; mode=block X-Frame-Options: SAMEORIGIN Transfer-Encoding: chunked 1000 # byte count of chunked data block [...snip...]
Three connect commands (responses not shown)
<ur> openssl s_client -connect 142.180.221.226:443 -h # get help (only with OpenSSL-3) ------------------------------------------------------------------------
<ur> openssl s_client -connect 142.180.221.226:443 -msg # show the protocol handshake
<ur> openssl s_client -connect 142.180.221.226:443 -showcerts # what far-end certificates are available? <ur> openssl s_client -connect 142.180.221.226:443 -debug # show more info hex and ASCII <ur> openssl s_client -connect 142.180.221.226:443 -state # show ssl state transitions Note: after anyone of the above commands, type the following: <ur> GET / HTTP/1.0<enter> # get default document using HTTP/1.0 <enter> # signal end of HTTP header
Four connect commands (responses not shown)
click: quick steps for a series of complete steps near the bottom of this page
for optional client verification (where client=user)
<ur> openssl s_client -connect 142.180.221.226:443 \ # -cert client.crt \ # optional client verification -key client.key <enter> # optional client verification <ur> openssl s_client -connect 142.180.221.226:443 \ # -cert client.pem <enter> # key + crt inside of pem
for optional client verification (where client=your system) <ur> openssl s_client -connect 142.180.221.226:443 \ -cert /etc/pki/tls/certs/server.crt \ -key /etc/pki/tls/private/server.key \ -tls1 <enter> # only use TLS1 encryption Note: after anyone of the above commands, type the following: <ur> GET / HTTP/1.0<enter> # get default document using HTTP/1.0 <enter> # signal end of HTTP header
Five connect commands (responses not shown)
<ur> openssl s_client -connect 142.180.39.15:5555 -debug # details while negotiating <ur> openssl s_client -connect 142.180.39.15:5555 -state # watch SSL change states <ur> openssl s_client -connect 142.180.39.15:5555 -tls1 -debug # use the TLS1 protocol <ur> openssl s_client -connect 142.180.39.15:5555 -ssl3 -debug # use the SSL3 protocol <ur> openssl s_client -connect 142.180.39.15:5555 \ # -cert client/client.pem \ # PEM files require a HASH file -CAfile client/client_ca.pem \ # list of trusted certificates -CApath client #
A very simple web server (cannot server up a file)
Server: <ur> openssl s_server -accept 4433 \ -cert /etc/pki/tls/certs/server.crt \ -key /etc/pki/tls/private/server.key \
-CAfile /etc/pki/tls/certs/chain.crt \ -debug \ -www # barely simulate a webserver (lower case) <sr> Using default temp DH parameters Using default temp ECDH parameters ACCEPT Client: <ur> openssl s_client -connect 142.180.39.15:4433 -debug # will connect to server <sr> ...handshake verbage... # bla...bla...bla... <ur> GET / HTTP/1.0<enter> # request default page containing stats <enter> # signal end of HTTP header
A simple web server (can serve up a file)
Server: <ur> cd # run these tests from your home directory <sr> [prompt] #
<ur> echo "this is sample text" > neil.txt <enter> # create a small text file <sr> [prompt] #
<ur> openssl s_server -accept 4433 \ -cert /etc/pki/tls/certs/server.crt \ -key /etc/pki/tls/private/server.key \
-CAfile /etc/pki/tls/certs/chain.crt \ -debug \ -WWW <enter> # simulate a better webserver (upper case) <sr> Using default temp DH parameters Using default temp ECDH parameters ACCEPT Client: <ur> openssl s_client -connect 142.180.39.15:4433 \ -cert vms_cert_dir/client.crt \ -key vms_cert_dir/client.key <enter> # will connect to server <sr> ...handshake verbage... # bla...bla...bla... <ur> GET /neil.txt HTTP/1.0<enter> # request file "neil.txt" <enter> # signal end of HTTP header <sr> HTTP 200 (OK) ...header verbage... this is sample text # presto
Web server with certificate-based client verification (popular in B2B applications)
Server: <ur> cd # run these tests from your home directory <sr> [prompt]
<ur> cat neil.txt # make sure test file exists <sr> this is sample text [prompt] #
<ur> openssl s_server -accept 4433 \ -cert /etc/pki/tls/certs/server.crt \ -key /etc/pki/tls/private/server.key \ -debug \ -WWW \ # simulate a better webserver -Verify 9 <enter> # force client to require a certificate <sr> verify depth is 9, must return a certificate Using default temp DH parameters Using default temp ECDH parameters ACCEPT Client: <ur> openssl s_client -connect 142.180.39.15:4433 \ -cert vms_cert_dir/client.crt \ -key vms_cert_dir/client.key <enter> # will connect to server <sr> ...handshake verbage... # bla...bla...bla... <ur> GET /neil.txt HTTP/1.0<enter> # request file "neil.txt" <enter> # signal end of HTTP header <sr> HTTP 200 (OK) ...header verbage... this is sample text # presto <ur> openssl s_client -connect 142.180.39.15:4433 # reconnect "without any certs" <sr> CONNECTED(00000005) depth=0 /C=CA/ST=ON/L=KITCHENER/O=BELL CANADA/OU=BELL-ATS/CN=www.bellics.com/emailAddress=neil@bellics.com verify error:num=18:self signed certificate # this is not really an error verify return:1 depth=0 /C=CA/ST=ON/L=KITCHENER/O=BELL CANADA/OU=BELL-ATS/CN=www.bellics.com/emailAddress=neil@bellics.com verify return:1 262761:error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure:S3_PKT:1102:SSL alert number 40 262761:error:140790E5:SSL routines:SSL23_WRITE:ssl handshake failure:S23_LIB:182: Server: <sr> ...verbage... 261215:error:140890C7:SSL routines:SSL3_GET_CLIENT_CERTIFICATE:peer did not return a certificate:S3_SRVR:2611: ACCEPT # waiting for another transaction
<sr> $ # my BASH prompt <ur> openssl ciphers # see available local ciphers <sr> DHE-RSA-AES256-SHA:DHE-DSS-AES256-SHA:AES256-SHA:DHE-RSA-CAMELLIA256-SHA: DHE-DSS-CAMELLIA256-SHA:CAMELLIA256-SHA:EDH-RSA-DES-CBC3-SHA:EDH-DSS-DES- CBC3-SHA:DES-CBC3-SHA:DES-CBC3-MD5:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA: AES128-SHA:DHE-RSA-SEED-SHA:DHE-DSS-SEED-SHA:SEED-SHA:DHE-RSA-CAMELLIA128 -SHA:DHE-DSS-CAMELLIA128-SHA:CAMELLIA128-SHA:RC2-CBC-MD5:DHE-DSS-RC4-SHA: RC4-SHA:RC4-MD5:RC4-MD5:EXP1024-DHE-DSS-DES-CBC-SHA:EXP1024-DES-CBC-SHA:E DH-RSA-DES-CBC-SHA:EDH-DSS-DES-CBC-SHA:DES-CBC-SHA:DES-CBC-MD5:EXP1024-DH E-DSS-RC4-SHA:EXP1024-RC4-SHA:EXP-EDH-RSA-DES-CBC-SHA:EXP-EDH-DSS-DES-CBC -SHA:EXP-DES-CBC-SHA:EXP-RC2-CBC-MD5:EXP-RC2-CBC-MD5:EXP-RC4-MD5:EXP-RC4- MD5 $ <ur> openssl s_client -connect www.google.ca:443 -cipher "RC4-SHA" # connect using the RED cipher ...handshake verbage... # bla...bla...bla... note: the requested cipher might not be available at the far end
notes: 1) I am on my production node "KAWC96" connecting to my development node "KAWC09" 2) We could just ignore the error 18 then continue 3) Or save the remote certificate in a local repository ---------------------------------------------------------------------------------------- <sr> [prompt] # my BASH prompt <ur> cd # start in home location <sr> [prompt] # <ur> openssl s_client -connect kawc09.on.bell.ca:443 -state -showcerts # connect to development platform # (without any local certificate) <sr> CONNECTED(00000005) SSL_connect:before/connect initialization SSL_connect:SSLv2/v3 write client hello A SSL_connect:SSLv3 read server hello A depth=0 /C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca verify error:num=18:self signed certificate <<<--- oops (let's fix this) verify return:1 depth=0 /C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca verify return:1 SSL_connect:SSLv3 read server certificate A SSL_connect:SSLv3 read server key exchange A SSL_connect:SSLv3 read server done A SSL_connect:SSLv3 write client key exchange A SSL_connect:SSLv3 write change cipher spec A SSL_connect:SSLv3 write finished A SSL_connect:SSLv3 flush data SSL_connect:SSLv3 read finished A --- Certificate chain 0 s:/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca i:/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca --- Server certificate -----BEGIN CERTIFICATE----- MIICtzCCAiACCQCOJDXcN8BI4TANBgkqhkiG9w0BAQUFADCBnzELMAkGA1UEBhMC [...snip...] S/To2pITuhif+f7Mec4qU/SDUXpj6Se/tJE9TjE2Mc5edTUmgX3amMpYUnQwBHti zQb9M8XXRU0RwBHZgqOYk/amVFeVCVFxw9jn -----END CERTIFICATE----- subject=/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca issuer=/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca --- No client certificate CA names sent --- SSL handshake has read 1270 bytes and written 361 bytes --- New, TLSv1/SSLv3, Cipher is DHE-RSA-AES256-SHA Server public key is 1024 bit Secure Renegotiation IS supported Compression: NONE Expansion: NONE SSL-Session: Protocol : TLSv1 Cipher : DHE-RSA-AES256-SHA Session-ID: DE5C43E6C8B445FCDA60894A08650E5B19D1E99DAF3F70D2661EE60956001CF1 Session-ID-ctx: Master-Key: CFF329BE8FFF7B8FD7E6201B16F1AC3663EFF5633CDDD6EA52C79ED4A5C1A7A1F796DECCD77FCD21D497DC2021402118 Key-Arg : None Start Time: 1343864769 Timeout : 300 (sec) Verify return code: 18 (self signed certificate) <<<---oops (let's fix this) --- <ur> <ctrl-Y> # we're done so hit <ctrl-Y> <sr> INTERRUPT $
Create a trusted chain (or add to an existing chain)
Note: This is similar to what happens when you import a certificate into your browser
<ur> cre xxx_kawc09.crt # create a file -----BEGIN CERTIFICATE----- # past in the remote certificate from above MIICtzCCAiACCQCOJDXcN8BI4TANBgkqhkiG9w0BAQUFADCBnzELMAkGA1UEBhMC [...snip...] S/To2pITuhif+f7Mec4qU/SDUXpj6Se/tJE9TjE2Mc5edTUmgX3amMpYUnQwBHti zQb9M8XXRU0RwBHZgqOYk/amVFeVCVFxw9jn -----END CERTIFICATE----- <ctrl-z> # hit <ctrl-z> to exit file-creation with SAVE <sr> Exit $ <ur> copy xxx_kawc09.crt vms_cert_dir # optional: copy file to our cert directory <sr> $ <ur> set def vms_cert_dir # now move over there <sr> $ <ur> dir client_ca.pem # any chains like this here? <sr> %DIRECT-W-NOFILES, no files found # nope <ur> copy xxx_kawc09.crt client_ca.pem # copy cert into new PEM or # or copy client_ca.pem, xxx_kawc09.crt client_ca.pem # append cert onto existing PEM <sr> $ <ur> openssl x509 -hash -noout -in client_ca.PEM # compute hash of pem <sr> 1132507a # this is the computed result <ur> copy client_ca.PEM 1132507a.0 # create a hash file with '.0' extension <sr> $ <ur> openssl verify "-CApath" vms_cert_dir -verbose -purpose any client_ca.PEM # test the PEM-hash combo <sr> client_ca.pem: OK # looks good so far <ur> set def sys$login: # back to our home directory <sr> $ <ur> openssl s_client -connect kawc09.on.bell.ca:443 -state - # connect to development platform (again) -cert vms_cert_dir/kawc96.crt - # -key vms_cert_dir/kawc96.key - # -"CAfile" vms_cert_dir/client_ca.PEM # but reference trusted cert chain <sr> CONNECTED(00000005) SSL_connect:before/connect initialization SSL_connect:SSLv2/v3 write client hello A SSL_connect:SSLv3 read server hello A depth=0 /C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca verify return:1 <<<--- cool (fixed) SSL_connect:SSLv3 read server certificate A SSL_connect:SSLv3 read server key exchange A SSL_connect:SSLv3 read server done A SSL_connect:SSLv3 write client key exchange A SSL_connect:SSLv3 write change cipher spec A SSL_connect:SSLv3 write finished A SSL_connect:SSLv3 flush data SSL_connect:SSLv3 read finished A --- Certificate chain 0 s:/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca i:/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca --- Server certificate -----BEGIN CERTIFICATE----- MIICtzCCAiACCQCOJDXcN8BI4TANBgkqhkiG9w0BAQUFADCBnzELMAkGA1UEBhMC [...snip...] S/To2pITuhif+f7Mec4qU/SDUXpj6Se/tJE9TjE2Mc5edTUmgX3amMpYUnQwBHti zQb9M8XXRU0RwBHZgqOYk/amVFeVCVFxw9jn -----END CERTIFICATE----- subject=/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca issuer=/C=ca/ST=Ontario/L=Kitchener/O=Bell Canada/OU=Bell-ATS/CN=kawc09.on.bell.ca/emailAddress=neil@kawc09.on.bell.ca --- No client certificate CA names sent --- SSL handshake has read 1270 bytes and written 361 bytes --- New, TLSv1/SSLv3, Cipher is DHE-RSA-AES256-SHA Server public key is 1024 bit Secure Renegotiation IS supported Compression: NONE Expansion: NONE SSL-Session: Protocol : TLSv1 Cipher : DHE-RSA-AES256-SHA Session-ID: 96B7F72BDCCB65C8040BD1DFE714989D87F966D000AB7ED9CDD9AEF5FD4EAE89 Session-ID-ctx: Master-Key: 7737874E462FAFD277E6541BD2608070BEBB15393D6897125F1DF8A10AC3AE24D5FD65BA0F909F9576A04856345BB6EE Key-Arg : None Start Time: 1343865022 Timeout : 300 (sec) Verify return code: 0 (ok) <<<---cool (fixed) --- <ur> <ctrl-z> # we are done <sr> Exit $
Overview:
note: this is a real-world example for server: kawc96.on.bell.ca (substitute numerical values for ccyymmdd)
commands: 1) openssl genrsa -out kawc96_ccyymmdd.key 2048 2) openssl req -new -key kawc96_ccyymmdd.key -out kawc96_ccyymmdd.csr 3) openssl req -noout -text -in kawc96_ccyymmdd.csr 4) cat (on Unix/Linux) kawc96_ccyymmdd.csr or type (on OpenVMS) kawc96_ccyymmdd.csr
steps: 1) copy/paste the contents into the submission window at your certificate vendor's site 2) the vendor will sign your CSR then email it back to you in base-64 format 3) save it as a file of the form: kawc96_ccyymmdd.crt 4) visit the vendor's site to get a copy the certificate they used to sign your CSR. I saved mine as: kawc96_ccyymmdd_vendor.crt 5) modify the Apache config file "ssl.conf" (see steps above) kawc96_ccyymmdd.key (private key which will never been shared with anyone) kawc96_ccyymmdd.crt (public certificate which contains your public key) kawc96_ccyymmss_vendor.crt (vendor's public certificate used to sign your cert) 6) restart the server (checking your log files)
OpenSSL commands to display the certificate files just for the fun of it 1) openssl x509 -noout -text -in kawc96_ccyymmdd.crt 2) openssl x509 -noout -text -in kawc96_ccyymmdd_vendor.crt
3) openssl rsa -noout -text -in kawc96_ccyymmdd.key
step 1: create file "index.html" in your local folder
=====================================================
<html> <head> <title>index.html</title> </head> <body> <p>this is a fake index file used for testing via the openssl cli</p> </body> </html>
step 2: create local certificates
=================================
step 2a: create a key openssl genrsa -des3 -out server.key 2048 # requires a passphrase
-or-
openssl genrsa -out server.key 2048 # no passphrase step 2b: create a CSR openssl req -key server.key -new -out server.csr --------------------------------------------------- dialog start You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:CA State or Province Name (full name) []:Ontario Locality Name (eg, city) [Default City]:Kitchener Organization Name (eg, company) [Default Company Ltd]:Bell-ATS Organizational Unit Name (eg, section) []:Bell-ATS Common Name (eg, your name or your server's hostname) []:bfdc0d.on.bell.ca Email Address []:neil.rieck@bell.ca Please enter the following 'extra' attributes to be sent with your certificate request A challenge password []: An optional company name []: --------------------------------------------------- dialog stop step 2c: self-sign the csr openssl x509 -signkey server.key -in server.csr -req -days 365 -out server.crt
step-3: start the server (self-signed)
======================================
openssl s_server -accept 443 \
-debug -WWW \ -cert ./server.crt \ -key ./server.key
possible reasons for failure
============================ 1) port not opened in your firewall
2) Apache already listening on port 443
Test from the same platform or another
======================================
openssl s_client -connect bfdc0d.on.bell.ca:443
GET /index.html HTTP/1.0<enter><enter> web page verbiage is returned
expert hacks
step-4: create a self-signed Root CA (to sign your own cert) ============================================================ openssl req -x509 -sha256 \ -days 1825 \ -newkey rsa:2048 \ -keyout ccyymmdd_root-CA.key \ -out ccyymmdd_root-CA.crt ----------------------------------------------------------- dialog start Generating a 2048 bit RSA private key ..........................................................+++ ...+++ writing new private key to 'ccyymmdd_root-CA.key' Enter PEM pass phrase:neil Verifying - Enter PEM pass phrase:neil ----- You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. ----- Country Name (2 letter code) [XX]:CA State or Province Name (full name) []:Ontario Locality Name (eg, city) [Default City]:Kitchener Organization Name (eg, company) [Default Company Ltd]:Bell-ATS Organizational Unit Name (eg, section) []:Bell-ATS Common Name (eg, your name or your server's hostname) []:neilrieck Email Address []:neil.rieck@bell.ca ----------------------------------------------------------- dialog stop
step-5: use your root-CA cert to sign your original csr
note: new cert will be named domain2.crt
=======================================================
step-51: create a config file (domain.ext) with the following content:
note: DNS.1 is required; other DNS entries are optional ----------------------------------------------------------- content start authorityKeyIdentifier=keyid,issuer basicConstraints=CA:FALSE subjectAltName = @alt_names [alt_names] DNS.1 = bfdc0d.on.bell.ca DNS.2 = bfdc0e.on.bell.ca ----------------------------------------------------------- content stop
step-52: sign your original csr
openssl x509 -req \ -CA ccyymmdd_root-CA.crt \ -CAkey ccyymmdd_root-CA.key \ -in domain.csr \ -out domain2.crt \ -days 365 \ -CAcreateserial \ -extfile domain.ext ----------------------------------------------------------- dialog start Signature ok subject=/C=CA/ST=Ontario/L=Kitchener/O=Bell-ATS/OU=Bell-ATS
/CN=bfdc0d.on.bell.ca/emailAddress=neil.rieck@bell.ca Getting CA Private Key Enter pass phrase for ccyymmdd_root-CA.key:neil [prompt ~]
step-53: display the cert
=========================
openssl x509 -noout -text -in domain2.crt
step-54: start the server (signed cert)
=======================================
openssl s_server -accept 443 \
-debug -WWW \ -cert ./server.crt \ -key ./server.key \
-CAcert ./ccyymmdd_root-CA.crt
Free OpenSSL books
OpenSSL for OpenVMS
SSL (general)
OpenSSL Tutorials