Skip to content

Latest commit

 

History

History
147 lines (124 loc) · 9.16 KB

jwt.md

File metadata and controls

147 lines (124 loc) · 9.16 KB

Bookmarks tagged [jwt]

https://www.pingidentity.com/en/company/blog/posts/2019/jwt-security-nobody-talks-about.html

In spite of the popularity of JWTs, their security properties are often misunderstood. To ensure the security of the app, you must fully consider asymmetric signatures, validation beyond signatures, c...


https://github.com/auth0/express-jwt

connect/express middleware that validates a JsonWebToken (JWT) and set the req.user with the attributes - auth0/express-jwt


https://github.com/jpadilla/pyjwt

JSON Web Token implementation in Python.


https://github.com/mpdavis/python-jose/

A JOSE implementation in Python.


https://github.com/davedoesdev/python-jwt

A module for generating and verifying JSON Web Tokens.


https://medium.facilelogin.com/jwt-jws-and-jwe-for-not-so-dummies-b63310d201a3

Detailed explanation about jwt, jws and jwe


https://medium.com/@darutk/understanding-id-token-5f83f50fa02e

From an engineer's point of view, an abstract explanation like “ID Token is a token issued as a result of user authentication” is not so valuable because engineers cannot imagine how to implement ID T...


https://developer.okta.com/blog/2018/06/20/what-happens-if-your-jwt-is-stolen

What happens if a JSON Web Token is stolen or compromised? What are the security considerations you need to understand? In this post, we'll look at what JWTs are, and what happens when they're stolen ...


https://medium.com/@ryanchenkie_40935/angular-authentication-using-the-http-client-and-http-intercep...

Let’s take a look at how to use Angular’s HttpInterceptor interface to make authenticated HTTP requests. It also suggest how to react in case the token expired.


https://auth0.com/learn/refresh-tokens/

A Refresh Token is a special kind of token that can be used to obtain a renewed access token —that allows accessing a protected resource— at any time. You can request new access tokens until the r...


https://auth0.com/blog/5-steps-to-add-modern-authentication-to-legacy-apps-using-jwts/

Conventional authentication is challenging for today's web applications. Learn about the reasons and how to use JSON Web Tokens (JWT) for modern authentication.


https://medium.com/@amcdnl/the-new-http-client-in-angular-4-3-754bd3ff83a8

In Angular 4.3, a new HTTP Client was introduced. This new client replaces the @angular/http module you are using right now. To prevent breaking changes (👍), it was released under a different name… ...

  • 📆 published on: 2017-07-25
  • tags: angular, jwt

https://blog.angular-university.io/angular-authentication-jwt/

A Step-by-Step Guide for learning how to implement JWT-based Authentication in Angular, includes what to do in the backend (using Node / Typescript)


https://auth0.com/docs/protocols/oidc

What is the OpenID Connect protocol and how it works.


https://auth0.com/e-books/jwt-handbook

Ever wondered how JWT came to be and what problems it was designed to tackle? Are you curious about the plethora of algorithms available for signing...


https://auth0.com/docs/tokens/id-token

How to obtain, use and renew an id_token.


https://auth0.com/docs/jwt

JSON Web Token (JWT) is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This article introduces you to all of the...


https://blog.angular-university.io/angular-jwt/

A Step-by-Step Guide for learning JSON Web Tokens, including signatures, single page web application User Authentication and Session Management.


https://tools.ietf.org/html/rfc7519

Abstract

JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. The claims in a JWT are encoded as a JSON object that is used as the payl...


https://jwt.io/

JWT.IO allows you to decode, verify and generate JWT.


http://paulbakker.io/java/jwt-keycloak-angular2/

Example on how to integrate angular 2 with keycloak. Front end with login-required and backend is using angular2-jwt, created by Auth0