https://github.com/alextanhongpin/node-ssl
Example on using SSL with nodejs
https://github.com/alextanhongpin/node-ssl
express node security ssl
Last synced: 3 months ago
JSON representation
Example on using SSL with nodejs
- Host: GitHub
- URL: https://github.com/alextanhongpin/node-ssl
- Owner: alextanhongpin
- Created: 2017-12-12T14:08:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-12T14:09:24.000Z (over 8 years ago)
- Last Synced: 2025-03-24T16:15:38.732Z (over 1 year ago)
- Topics: express, node, security, ssl
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Node SSL/TLS
More on this [here](https://www.openssl.org/docs/manmaster/man1/req.html).
## Generate Private Key
```bash
$ openssl genrsa -des3 -out server.enc.key 1024
```
## Issue a Certificate Signing Request
```bash
$ openssl req -new -key server.enc.key -out server.csr
$ openssl rsa -in server.enc.key -out server.key
$ openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
```
- req: PKCS#10 certificate request and certificate generating utility
- x509: