-
Enhancement
-
Resolution: Fixed
-
P5
-
6
-
None
-
b21
-
generic
-
solaris, solaris_9
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2154316 | OpenJDK6 | Sean Mullan | P2 | Resolved | Fixed | b01 |
It would be useful to add a public java.security.cert.CertificateRevokedException
class (that extends CertificateException), so programmers could more easily
determine if a revoked certificate caused a CertPathValidator to fail to validate
a path, ex:
try {
CertPath cp = CertPathValidator.validate(path, params);
} catch (CertPathValidatorException cpve) {
if (cpve.getCause() instanceof CertificateRevokedException) {
System.out.println("certificate " + cpve.getIndex() + " is revoked");
}
}
- backported by
-
JDK-2154316 Add CertificateRevokedException class
-
- Resolved
-
- duplicates
-
JDK-6248080 Need better exception thrown from JSSE for OCSP and CRL validation
-
- Closed
-
- relates to
-
JDK-6734863 Java Plugin should not display warning dialog if certificate is revoked after secure timestamp
-
- Closed
-
-
JDK-6330004 Check if signer's certificate has been revoked after timestamp has been generated
-
- Closed
-
-
JDK-6330022 Check if revoked TSA certificate's date and reason code is acceptable
-
- Closed
-
-
JDK-6465942 Add problem identification facility to the CertPathValidator framework
-
- Closed
-