I'm attempting to require both x509 certificate authentication as well as OIDC authentication simultaneously. Spring has a nice way to offer both, but not to require both. httpSecurity.x509().and().openIdLogin()
is essentially .or()
.
I can't find anything in Spring Security docs closely related, and I was really hoping to not have to write my own authentication mechanism.