dimas-b commented on code in PR #1397: URL: https://github.com/apache/polaris/pull/1397#discussion_r2060698739
########## quarkus/service/src/main/java/org/apache/polaris/service/quarkus/auth/internal/InternalAuthenticationMechanism.java: ########## @@ -56,9 +84,34 @@ public Uni<SecurityIdentity> authenticate( } String credential = authHeader.substring(spaceIdx + 1); + + DecodedToken token; + try { + token = decodeToken(credential); + } catch (Exception e) { + return configuration.type() == AuthenticationType.MIXED Review Comment: I was thinking that we could parse without validation in `InternalAuthenticationMechanism`, check a Polaris-specific property and trust it to choose the internal validation logic. Then, `InternalIdentityProvider` would finish the validation by checking the signature. In any case, I think it makes sense to defer this. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@polaris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org