From 955b8ff55f0072c896bbfe26bdaed5650ed32cda Mon Sep 17 00:00:00 2001 From: Dave Grijalva Date: Wed, 29 Jan 2014 10:08:31 -0800 Subject: [PATCH] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e254a09..a4ee874 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ A [golang](http://www.golang.org) implementation of [JSON Web Tokens](http://self-issued.info/docs/draft-jones-json-web-token.html) -This library is still a work in progress. Feedback is appreciated. This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are RSA256 and HMAC SHA256. +This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are RSA256 and HMAC SHA256. + +This library is considered production ready. Feedback and feature requests are appreciated. ## Parse and Verify @@ -19,4 +21,4 @@ This library is still a work in progress. Feedback is appreciated. This librar token := jwt.New(jwt.GetSigningMethod("HS256")) token.Claims["foo"] = "bar" token.Claims["exp"] = time.Now().Add(time.Hour * 72).Unix() - tokenString, err := token.SignedString(mySigningKey) \ No newline at end of file + tokenString, err := token.SignedString(mySigningKey)