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