You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* initial go module file
Signed-off-by: sadmansakib <[email protected]>
* fix linting issues
Signed-off-by: sadmansakib <[email protected]>
* rename module to golang-jwt/jwt
Signed-off-by: sadmansakib <[email protected]>
* Renamed imports to match with go module name.
Signed-off-by: sadmansakib <[email protected]>
* update travis for latest go versions
Signed-off-by: sadmansakib <[email protected]>
* Set go version to 1.14
lowered the go version to make it consistent with matrix build
* revert accidental changes while renaming
Signed-off-by: sadmansakib <[email protected]>
* remove travis CI
no longer needed since github actions workflow was created for the
project
Signed-off-by: sadmansakib <[email protected]>
* Revert "remove travis CI"
This reverts commit b3ae57f.
* update travis for older go versions
A [go](http://www.golang.org) (or 'golang' for search engine friendliness) implementation of [JSON Web Tokens](http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html)
7
7
@@ -27,11 +27,11 @@ This library supports the parsing and verification as well as the generation and
27
27
28
28
## Examples
29
29
30
-
See [the project documentation](https://godoc.org/github.com/dgrijalva/jwt-go) for examples of usage:
30
+
See [the project documentation](https://godoc.org/github.com/golang-jwt/jwt) for examples of usage:
31
31
32
-
*[Simple example of parsing and validating a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-Parse--Hmac)
33
-
*[Simple example of building and signing a token](https://godoc.org/github.com/dgrijalva/jwt-go#example-New--Hmac)
34
-
*[Directory of Examples](https://godoc.org/github.com/dgrijalva/jwt-go#pkg-examples)
32
+
*[Simple example of parsing and validating a token](https://godoc.org/github.com/golang-jwt/jwt#example-Parse--Hmac)
33
+
*[Simple example of building and signing a token](https://godoc.org/github.com/golang-jwt/jwt#example-New--Hmac)
34
+
*[Directory of Examples](https://godoc.org/github.com/golang-jwt/jwt#pkg-examples)
35
35
36
36
## Extensions
37
37
@@ -49,7 +49,7 @@ This library was last reviewed to comply with [RTF 7519](http://www.rfc-editor.o
49
49
50
50
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).
51
51
52
-
This project uses [Semantic Versioning 2.0.0](http://semver.org). Accepted pull requests will land on `master`. Periodically, versions will be tagged from `master`. You can find all the releases on [the project releases page](https://github.com/dgrijalva/jwt-go/releases).
52
+
This project uses [Semantic Versioning 2.0.0](http://semver.org). Accepted pull requests will land on `master`. Periodically, versions will be tagged from `master`. You can find all the releases on [the project releases page](https://github.com/golang-jwt/jwt/releases).
53
53
54
54
While we try to make it obvious when we make breaking changes, there isn't a great mechanism for pushing announcements out to users. You may want to use this alternative package include: `gopkg.in/dgrijalva/jwt-go.v3`. It will do the right thing WRT semantic versioning.
55
55
@@ -79,9 +79,9 @@ Asymmetric signing methods, such as RSA, use different keys for signing and veri
79
79
80
80
Each signing method expects a different object type for its signing keys. See the package documentation for details. Here are the most common ones:
81
81
82
-
* The [HMAC signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodHMAC) (`HS256`,`HS384`,`HS512`) expect `[]byte` values for signing and validation
83
-
* The [RSA signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodRSA) (`RS256`,`RS384`,`RS512`) expect `*rsa.PrivateKey` for signing and `*rsa.PublicKey` for validation
84
-
* The [ECDSA signing method](https://godoc.org/github.com/dgrijalva/jwt-go#SigningMethodECDSA) (`ES256`,`ES384`,`ES512`) expect `*ecdsa.PrivateKey` for signing and `*ecdsa.PublicKey` for validation
82
+
* The [HMAC signing method](https://godoc.org/github.com/golang-jwt/jwt#SigningMethodHMAC) (`HS256`,`HS384`,`HS512`) expect `[]byte` values for signing and validation
83
+
* The [RSA signing method](https://godoc.org/github.com/golang-jwt/jwt#SigningMethodRSA) (`RS256`,`RS384`,`RS512`) expect `*rsa.PrivateKey` for signing and `*rsa.PublicKey` for validation
84
+
* The [ECDSA signing method](https://godoc.org/github.com/golang-jwt/jwt#SigningMethodECDSA) (`ES256`,`ES384`,`ES512`) expect `*ecdsa.PrivateKey` for signing and `*ecdsa.PublicKey` for validation
85
85
86
86
### JWT and OAuth
87
87
@@ -99,6 +99,6 @@ This library uses descriptive error messages whenever possible. If you are not g
99
99
100
100
## More
101
101
102
-
Documentation can be found [on godoc.org](http://godoc.org/github.com/dgrijalva/jwt-go).
102
+
Documentation can be found [on godoc.org](http://godoc.org/github.com/golang-jwt/jwt).
103
103
104
104
The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in the documentation.
0 commit comments