jwt-authentication
Advanced tools
Comparing version 0.0.1 to 0.0.2
@@ -0,1 +1,5 @@ | ||
<a name="0.0.2"></a> | ||
### 0.0.2 (2015-02-02) | ||
<a name="0.0.1"></a> | ||
@@ -2,0 +6,0 @@ ### 0.0.1 (2015-02-02) |
{ | ||
"name": "jwt-authentication", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"description": "Library that is used to create and verify json web tokens for service to service authentication purposes.", | ||
@@ -5,0 +5,0 @@ "main": "lib/jwt-authentication.js", |
@@ -1,2 +0,2 @@ | ||
#JWT Authentication | ||
# JWT Authentication | ||
@@ -14,5 +14,5 @@ [![Build Status](https://drone.io/bitbucket.org/atlassianlabs/jwt-authentication/status.png)](https://drone.io/bitbucket.org/atlassianlabs/jwt-authentication/latest) | ||
##Features | ||
## Features | ||
###Client | ||
### Client | ||
@@ -22,3 +22,3 @@ * Create JWT tokens signed with a private key | ||
###Server | ||
### Server | ||
@@ -33,3 +33,3 @@ * Validate a JWT token | ||
##Example | ||
## Example | ||
@@ -66,3 +66,3 @@ ### Client | ||
##Public Key Server | ||
## Public Key Server | ||
@@ -83,5 +83,5 @@ The tokens are cryptographically signed using [RSA](http://en.wikipedia.org/wiki/RSA_%28cryptosystem%29). This means the token creators need a public and private key pair. Only the token creator should have access to the private key and it should be distributed to these services using a secure mechanism. The public key needs to be accessible to the receiver of the token. This is where the public key server fits into the picture. | ||
##Contributing | ||
## Contributing | ||
###Development Requirements | ||
### Development Requirements | ||
@@ -92,3 +92,3 @@ * nodejs 0.10.26 | ||
###Setting up a development environment | ||
### Setting up a development environment | ||
@@ -99,3 +99,3 @@ 1. Clone the repository | ||
###During development | ||
### During development | ||
@@ -107,11 +107,11 @@ * Use `grunt watch` to run the unit tests. When the relevant files are changed the unit tests will automatically be run. | ||
###Documentation | ||
### Documentation | ||
This library uses [JSDoc](http://usejsdoc.org/) to document it's public api. If you are making changes to the api please update the JSDoc accordingly. | ||
###Changelog | ||
### Changelog | ||
This library automatically generates the changelog from the commit messages. To facilitate this please follow [these conventions](https://github.com/ajoslin/conventional-changelog/blob/master/CONVENTIONS.md) in your commit messages. | ||
###Releasing | ||
### Releasing | ||
@@ -121,2 +121,1 @@ * Run `grunt release:patch` to release a patch version of the library. | ||
* Run `grunt release:major` to release a major version of the library. | ||
49393
113