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.
1 parent df005fe commit b5eb560Copy full SHA for b5eb560
sigstore/_verify.py
@@ -284,15 +284,15 @@ def verify(
284
return VerificationFailure(
285
reason=(
286
f"Rekor entry's signature ('{expected_sig}') does not "
287
- f"match supplied signature ('{signature}')"
+ f"match supplied signature ('{signature.decode()}')"
288
)
289
290
291
if expected_cert != cert:
292
293
294
f"Rekor entry's certificate ('{expected_cert}') does not "
295
- f"match supplied certificate ('{certificate}')"
+ f"match supplied certificate ('{cert}')"
296
297
298
0 commit comments