Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 715 Bytes

File metadata and controls

20 lines (16 loc) · 715 Bytes

Spring Boot JWT implementation

This is a test project that I used to learn how to use Spring Boot with Json Web Tokens.

Additional thanks to Stephan Zerhusen who's JWT Spring Security Demo I used as part of my study.

Build and run

//todo add info

Auth service

Auth service provides tokens to users with valid credentials. //todo add more info

Resource service

Name speaks for it self - it is a service that provides information to authorized clients. //todo add more info

JWT Token

I this implementation JWT token is signed with RSA and encrypted also with RSA - of course different keys. //todo add more info