This tutorial goes through how to install openssl 1.1.1 on CentOS 7, since the yum repo only installs up to openssl 1.0.
Upgrade the system
yum -y update
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <script id="jsbin-javascript"> |
| function parseQueryString(qs) { | |
| qs = qs.replace(/\+/g, ' '); | |
| var params = {}, tokens, | |
| re = /[?&]:?([^=]+)=([^&#]*)/g; | |
| while (tokens = re.exec(qs)) { | |
| // console.log(tokens); | |
| params[decodeURIComponent(tokens[1])] | |
| = decodeURIComponent(tokens[2]); |