Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/avidee007/spring-security-custom-auth
Using filters to do custom authentication with spring-security based http headers
https://github.com/avidee007/spring-security-custom-auth
Last synced: 2 months ago
JSON representation
Using filters to do custom authentication with spring-security based http headers
- Host: GitHub
- URL: https://github.com/avidee007/spring-security-custom-auth
- Owner: avidee007
- Created: 2024-07-27T18:38:09.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-30T13:33:03.000Z (6 months ago)
- Last Synced: 2024-07-30T17:06:54.609Z (6 months ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Custom Authentication with Spring security
* Built a custom secure token using Symmetric Advanced Encryption Algorithm.
* This token is a custom version token similar to JWT token.
* This token can be achieved by /token endpoint associated with mobile number.
* Token acquired needs to be passed in request header with name **x-auth-token** for secured APIs.
* Implemented custom security filters to do custom authentication reading custom http header.
* User will be authenticated based upon the validation of token value.### Components Used
* spring starter web
* spring starter security