-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added MTLS external validation support #21
base: main
Are you sure you want to change the base?
added MTLS external validation support #21
Conversation
@tnorimat please Review |
@DmitryMishchuk Thank you. I will review this soon. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DmitryMishchuk I've reviewed this PR and add some review comments. Could you check them?
...rc/main/java/org/keycloak/protocol/oidc/representations/OIDCConfigurationRepresentation.java
Outdated
Show resolved
Hide resolved
core/src/main/java/org/keycloak/representations/oidc/OIDCClientRepresentation.java
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,13 @@ | |||
package org.keycloak.mtls; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure whether this provider is in server-spi
project.
AFAIK, the providers in server-spi
are fixed and never change their interfaces.
IMO, it might be appropriate that this provider be in server-spi-private
.
It might be better to ask Keycloak development team about this point.
server-spi/src/main/java/org/keycloak/mtls/MtlsExtendedValidationSpi.java
Show resolved
Hide resolved
server-spi/src/main/java/org/keycloak/mtls/MtlsExtendedValidationProvider.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/keycloak/authentication/authenticators/client/X509ClientAuthenticator.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/keycloak/authentication/authenticators/client/X509ClientAuthenticator.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/keycloak/authentication/authenticators/client/X509ClientAuthenticator.java
Outdated
Show resolved
Hide resolved
...src/main/java/org/keycloak/authentication/authenticators/client/X509ClientAuthenticator.java
Outdated
Show resolved
Hide resolved
services/src/main/java/org/keycloak/protocol/oidc/OIDCAdvancedConfigWrapper.java
Outdated
Show resolved
Hide resolved
Closes keycloak/security#32 Co-authored-by: Stian Thorgersen <[email protected]> Conflicts: services/src/main/java/org/keycloak/protocol/oidc/grants/device/DeviceGrantType.java
test: add test for nested disclosable jwt
Added MTLS external validation support as per keycloak/keycloak-community#267