Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Authelia | 17,429 | 2 | 12 hours ago | 64 | October 28, 2019 | 101 | apache-2.0 | Go | ||
The Single Sign-On Multi-Factor portal for web apps | ||||||||||
Fail2ban | 8,622 | 20 hours ago | 1 | August 14, 2018 | 233 | other | Python | |||
Daemon to ban hosts that cause multiple authentication errors | ||||||||||
Jwt | 5,320 | 4,292 | 10 days ago | 38 | December 09, 2022 | 37 | mit | Go | ||
Community maintained clone of https://github.com/dgrijalva/jwt-go | ||||||||||
Authentik | 4,636 | 4 | 11 hours ago | 321 | August 05, 2023 | 441 | other | Python | ||
The authentication glue you need. | ||||||||||
Uuid | 4,609 | 3,954 | 31,510 | 5 days ago | 16 | July 12, 2021 | 27 | bsd-3-clause | Go | |
Go package for UUIDs based on RFC 4122 and DCE 1.1: Authentication and Security Services. | ||||||||||
Flask Appbuilder | 4,322 | 301 | 32 | 4 days ago | 302 | July 27, 2023 | 159 | bsd-3-clause | Python | |
Simple and rapid application development framework, built on top of Flask. includes detailed security, auto CRUD generation for your models, google charts and much more. Demo (login with guest/welcome) - http://flaskappbuilder.pythonanywhere.com/ | ||||||||||
Jetstream | 3,765 | 19 | 5 days ago | 135 | May 30, 2023 | 1 | mit | PHP | ||
Tailwind scaffolding for the Laravel framework. | ||||||||||
Ockam | 3,586 | 26 | 12 hours ago | 82 | June 09, 2023 | 295 | apache-2.0 | Rust | ||
Orchestrate end-to-end encryption, cryptographic identities, mutual authentication, and authorization policies between distributed applications – at massive scale. Use Ockam to build secure-by-design applications that can Trust Data-in-Motion. | ||||||||||
Bouncer | 3,297 | 117 | 30 | 12 days ago | 55 | February 21, 2022 | 42 | mit | PHP | |
Laravel Eloquent roles and abilities. | ||||||||||
Twofactorauth | 3,278 | 2 days ago | 21 | other | Ruby | |||||
List of sites with two factor auth support which includes SMS, email, phone calls, hardware, and software. |
A go (or 'golang' for search engine friendliness) implementation of JSON Web Tokens.
Starting with v4.0.0
this project adds Go module support, but maintains backwards compatibility with
older v3.x.y
tags and upstream github.com/dgrijalva/jwt-go
. See the
MIGRATION_GUIDE.md
for more information. Version
v5.0.0 introduces major improvements to the validation of tokens, but is not
entirely backwards compatible.
After the original author of the library suggested migrating the maintenance of
jwt-go
, a dedicated team of open source maintainers decided to clone the existing library into this repository. See dgrijalva/jwt-go#462 for a detailed discussion on this topic.
SECURITY NOTICE: Some older versions of Go have a security issue in the crypto/elliptic. Recommendation is to upgrade to at least 1.15 See issue dgrijalva/jwt-go#216 for more detail.
SECURITY NOTICE: It's important that you validate the alg
presented is
what you
expect.
This library attempts to make it easy to do the right thing by requiring key
types match the expected alg, but you should take the extra step to verify it in
your usage. See the examples provided.
Our support of Go versions is aligned with Go's version release policy. So we will support a major version of Go until there are two newer major releases. We no longer support building jwt-go with unsupported Go versions, as these contain security vulnerabilities which will not be fixed.
JWT.io has a great introduction to JSON Web Tokens.
In short, it's a signed JSON object that does something useful (for example,
authentication). It's commonly used for Bearer
tokens in Oauth 2. A token is
made of three parts, separated by .
's. The first two parts are JSON objects,
that have been base64url
encoded. The last part is the signature, encoded the same way.
The first part is called the header. It contains the necessary information for verifying the last part, the signature. For example, which encryption method was used for signing and what key was used.
The part in the middle is the interesting bit. It's called the Claims and contains the actual stuff you care about. Refer to RFC 7519 for information about reserved keys and the proper way to add your own.
This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are HMAC SHA, RSA, RSA-PSS, and ECDSA, though hooks are present for adding your own.
jwt-go
as a dependency in your Go program.go get -u github.com/golang-jwt/jwt/v5
import "github.com/golang-jwt/jwt/v5"
A detailed usage guide, including how to sign and verify tokens can be found on our documentation website.
See the project documentation for examples of usage:
This library was last reviewed to comply with RFC 7519 dated May 2015 with a few notable differences:
alg=none
will only be accepted if the constant
jwt.UnsafeAllowNoneSignatureType
is provided as the key.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).
This project uses Semantic Versioning 2.0.0. Accepted pull
requests will land on main
. Periodically, versions will be tagged from
main
. You can find all the releases on the project releases
page.
BREAKING CHANGES:* A full list of breaking changes is available in
VERSION_HISTORY.md
. See MIGRATION_GUIDE.md
for more information on updating
your code.
This library publishes all the necessary components for adding your own signing
methods or key functions. Simply implement the SigningMethod
interface and
register a factory method using RegisterSigningMethod
or provide a
jwt.Keyfunc
.
A common use case would be integrating with different 3rd party signature providers, like key management services from various cloud providers or Hardware Security Modules (HSMs) or to implement additional standards.
Extension | Purpose | Repo |
---|---|---|
GCP | Integrates with multiple Google Cloud Platform signing tools (AppEngine, IAM API, Cloud KMS) | someone1/gcp-jwt-go |
AWS | Integrates with AWS Key Management Service, KMS | matelang/jwt-go-aws-kms |
JWKS | Provides support for JWKS (RFC 7517) as a jwt.Keyfunc
|
MicahParks/keyfunc |
Disclaimer: Unless otherwise specified, these integrations are maintained by third parties and should not be considered as a primary offer by any of the mentioned cloud providers
Go package documentation can be found on pkg.go.dev. Additional documentation can be found on our project page.
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.
golang-jwt incorporates a modified version of the JWT logo, which is distributed under the terms of the MIT License.