mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8133489: Better messaging for PKIX path validation matching
Reviewed-by: xuelei
This commit is contained in:
parent
86ce4e9448
commit
3f0730930d
2 changed files with 9 additions and 6 deletions
|
@ -2115,8 +2115,11 @@ public class X509CertSelector implements CertSelector {
|
|||
if (certSubjectKeyID == null ||
|
||||
!Arrays.equals(subjectKeyID, certSubjectKeyID)) {
|
||||
if (debug != null) {
|
||||
debug.println("X509CertSelector.match: "
|
||||
+ "subject key IDs don't match");
|
||||
debug.println("X509CertSelector.match: subject key IDs " +
|
||||
"don't match\nX509CertSelector.match: subjectKeyID: " +
|
||||
Arrays.toString(subjectKeyID) +
|
||||
"\nX509CertSelector.match: certSubjectKeyID: " +
|
||||
Arrays.toString(certSubjectKeyID));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue