boot-stateless-auth
boot-stateless-auth copied to clipboard
i am facing exception no bean found for user repository.
This should not use Arrays.equals: https://github.com/Robbert1/boot-stateless-auth/blob/master/src/main/java/com/jdriven/stateless/security/TokenHandler.java#L41 Instead it should use a constant time equality checking method like ``` public static boolean isEqual(byte[] a, byte[] b) { if (a.length != b.length)...
License
Could you add a commercial friendly license? (e.g MIT)
403 Forbidden HTTP status code is returned when the endpoint does not exist, even if the `X-AUTH-TOKEN` provided is correct and allows to make correct calls on existing endpoints. Expected...
Hello, When dealing with Cross-site requests, a first OPTIONS request is sent to the server before the real request. Namely, when trying to authenticate through a POST to /api/login, first...
I found the article and the code very helpful, so I used it in my current project. But the problem I am facing right now is how to add the...