Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class JwtClientAuthentication {
// no signature check with invalid algorithms
private static final Set<Algorithm> NOT_SUPPORTED_ALGORITHMS = Set.of(Algorithm.NONE, JWSAlgorithm.HS256, JWSAlgorithm.HS384, JWSAlgorithm.HS512);
private static final Set<String> JWT_REQUIRED_CLAIMS = Set.of(ClaimConstants.ISS, ClaimConstants.SUB, ClaimConstants.AUD,
ClaimConstants.EXPIRY_IN_SECONDS, ClaimConstants.JTI);
ClaimConstants.EXPIRY_IN_SECONDS);

private final KeyInfoService keyInfoService;
private final OidcMetadataFetcher oidcMetadataFetcher;
Expand Down
Loading