Skip to content

Commit

Permalink
Fix: #26 nonce 제외 후 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
BYEONGRYEOL committed Jul 13, 2024
1 parent 09d2860 commit 8bb1078
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ public boolean isValid(Claims claims) {
log.info("nonce 변조");
}
return claims.getIssuer().contains(iss) &&
claims.getAudience().equals(clientId) &&
claims.get(NONCE_KEY, String.class).equals(nonce);
claims.getAudience().equals(clientId)
;
// claims.get(NONCE_KEY, String.class).equals(nonce);
}

public static String encrypt(String value) {
Expand Down

0 comments on commit 8bb1078

Please sign in to comment.