Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement token and basic authentication
NOTE: this Service is not resilient against brute-force attacks in such it does not implement rate limiting on authentication nor authorization requests. * Uses Linux users to authorize requests. * no authorization roles or scopes are implemented yet. * token based authentication is implemented with the Redfish session login authentication in mind. That is, when we would implement Redfish it should be easy to append the current implementation * token timeout gets reset on every use of the token. * basic authentication: The authentication service expects a 'Authorization' header containing the following format: 'Basic <base64 encoded as <username:password>>'
- Loading branch information