https://github.com/timreynolds/jwt-token-provider
NodeJS JWT Token Provider
https://github.com/timreynolds/jwt-token-provider
Last synced: 2 months ago
JSON representation
NodeJS JWT Token Provider
- Host: GitHub
- URL: https://github.com/timreynolds/jwt-token-provider
- Owner: timReynolds
- Created: 2014-06-27T11:51:45.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2020-07-14T10:25:56.000Z (almost 5 years ago)
- Last Synced: 2024-10-23T02:49:49.708Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
NodeJs JWT Token Provider
==================Demo NodeJS token provider using RS256 via jsonwebtoken.
The repsone will provide the token in the body, inclusing anything that was included in the body of the token request.
## Creating a certificate
Creating a certificate requires the use of openSSL as follows;
openssl genrsa -out mykey.pem 1024
openssl rsa -in mykey.pem -pubout > mykey.pub