Trust between Event Driven Microservices using JWT
Expanding the JWT based trust system to work with an event driven architecture
Expanding the JWT based trust system to work with an event driven architecture
How JWTs can be used to establish trust between system components such as Microservices
An introduction to JWT, complete with a simple web application playground
<a href="https://jwt.io/" target='_blank'>jwt.io</a>
: “JSON Web Token (JWT) is an open standard
<a href="https://tools.ietf.org/html/rfc7519" target='_blank'>(RFC 7519)</a>
that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. This information can be verified and trusted because it is digitally signed. JWTs can be signed using a secret (with the HMAC algorithm) or a public/private key pair using RSA.”