From 110717f256f72f0aca2cea8a259cea97c284c62b Mon Sep 17 00:00:00 2001 From: Harish Annavisamy <86186455+JACKURUVI99@users.noreply.github.com> Date: Mon, 22 Jun 2026 10:30:21 +0530 Subject: [PATCH] In line 340 dq where checked twice insted of checking dp --- src/main/java/com/google/crypto/tink/jwt/JwkSetConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/google/crypto/tink/jwt/JwkSetConverter.java b/src/main/java/com/google/crypto/tink/jwt/JwkSetConverter.java index a9d92a469..e480a094f 100644 --- a/src/main/java/com/google/crypto/tink/jwt/JwkSetConverter.java +++ b/src/main/java/com/google/crypto/tink/jwt/JwkSetConverter.java @@ -337,7 +337,7 @@ private static JwtRsaSsaPssPublicKey convertToRsaSsaPssKey(JsonObject jsonKey) } if (jsonKey.has("p") || jsonKey.has("q") - || jsonKey.has("dq") + || jsonKey.has("dp") || jsonKey.has("dq") || jsonKey.has("d") || jsonKey.has("qi")) {