Skip to content

Commit cd3d043

Browse files
committed
Alma JWT is using ES256 and not RS256 algorithm
1 parent 88d0a49 commit cd3d043

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/controllers/concerns/alma_jwt_validator.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def jwk_set
1818

1919
def decode_and_verify_jwt(token)
2020
options = {
21-
algorithm: 'RS256',
21+
algorithm: 'ES256',
2222
verify_expiration: true,
2323
verify_aud: false,
2424
verify_iss: true,

0 commit comments

Comments
 (0)