if no alg is explicitly set, use the default from the signer
parent
d26eb88faa
commit
b764908416
|
@ -342,6 +342,10 @@ public class OIDCAuthenticationFilter extends AbstractAuthenticationProcessingFi
|
|||
|
||||
// needs to be wired in to the bean
|
||||
signer = authenticationSignerService;
|
||||
|
||||
if (alg == null) {
|
||||
alg = authenticationSignerService.getDefaultSigningAlgorithm();
|
||||
}
|
||||
}
|
||||
|
||||
if (signer == null) {
|
||||
|
|
Loading…
Reference in New Issue