Skip to content

Commit 14e7d91

Browse files
committedApr 26, 2022
8285404: RSA signature verification should reject non-DER OCTET STRING
Reviewed-by: valeriep
1 parent 110edd9 commit 14e7d91

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
 

‎src/java.base/share/classes/sun/security/rsa/RSASignature.java

+4
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,10 @@ protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
215215
byte[] digest = getDigestValue();
216216
byte[] decrypted = RSACore.rsa(sigBytes, publicKey);
217217
byte[] unpadded = padding.unpad(decrypted);
218+
// https://www.rfc-editor.org/rfc/rfc8017.html#section-8.2.2
219+
// Step 4 suggests comparing the encoded message instead of the
220+
// decoded, but some vendors might omit the NULL params in
221+
// digest algorithm identifier.
218222
byte[] decodedDigest = RSAUtil.decodeSignature(digestOID, unpadded);
219223
return MessageDigest.isEqual(digest, decodedDigest);
220224
} catch (javax.crypto.BadPaddingException e) {

‎src/java.base/share/classes/sun/security/rsa/RSAUtil.java

+3
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ public static byte[] decodeSignature(ObjectIdentifier oid, byte[] sig)
200200
if (algId.getEncodedParams() != null) {
201201
throw new IOException("Unexpected AlgorithmId parameters");
202202
}
203+
if (values[1].isConstructed()) {
204+
throw new IOException("Unexpected constructed digest value");
205+
}
203206
byte[] digest = values[1].getOctetString();
204207
return digest;
205208
}

0 commit comments

Comments
 (0)
Please sign in to comment.