Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit 371adc1

Browse files
author
Dominik Frantisek Bucik
committed
fix: 🐛 fix loading JWKS
Caused failures in validation of JWTs. We have exposed the default bundled file instead of the correctly loaded one.
1 parent 46ab759 commit 371adc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

perun-oidc-server-webapp/src/main/webapp/WEB-INF/crypto-config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">
3232

3333
<bean id="defaultKeyStore" class="cz.muni.ics.jose.keystore.JWKSetKeyStore">
34-
<property name="location" value="classpath:keystore.jwks" />
34+
<property name="location" value="${jwk}" />
3535
</bean>
3636

3737
<bean id="defaultsignerService" class="cz.muni.ics.jwt.signer.service.impl.DefaultJWTSigningAndValidationService">

0 commit comments

Comments
 (0)