Added comment about adding custom signing methods to README

This commit is contained in:
Dave Grijalva 2015-09-04 14:24:56 -07:00
parent 3b55c4adf0
commit c1da563496
1 changed files with 6 additions and 0 deletions

View File

@ -48,6 +48,12 @@ Parsing and verifying tokens is pretty straight forward. You pass in the token
tokenString, err := token.SignedString(mySigningKey)
```
## Extensions
This library publishes all the necessary components for adding your own signing methods. Simply implement the `SigningMethod` interface and register a factory method using `RegisterSigningMethod`.
Here's an example of an extension that integrates with the Google App Engine signing tools: https://github.com/someone1/gcp-jwt-go
## Project Status & Versioning
This library is considered production ready. Feedback and feature requests are appreciated. The API should be considered stable. There should be very few backwards-incompatible changes outside of major version updates (and only with good reason).