x509
Adds X509 based pre authentication to an application
Example:
@Configuration
@EnableWebSecurity
class SecurityConfig {
@Bean
fun securityFilterChain(http: HttpSecurity): SecurityFilterChain {
http {
x509 { }
}
return http.build()
}
}Content copied to clipboard
Parameters
x509Configuration
custom configuration to apply to the X509 based pre authentication