We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bab16e7 + cb43978 commit a5794e8Copy full SHA for a5794e8
sigstore-java/src/main/java/dev/sigstore/rekor/client/RekorVerifier.java
@@ -71,7 +71,8 @@ public void verifyEntry(RekorEntry entry) throws RekorVerificationException {
71
new RekorVerificationException(
72
"Log entry (logid) does not match any provided transparency logs."));
73
74
- if (entry.getVerification().getSignedEntryTimestamp() != null) {
+ var set = entry.getVerification().getSignedEntryTimestamp();
75
+ if (set != null && !set.isEmpty()) {
76
try {
77
var verifier = Verifiers.newVerifier(tlog.getPublicKey().toJavaPublicKey());
78
if (!verifier.verify(
0 commit comments