Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
common: remove optional on PublicKey.raw_bytes
Signed-off-by: William Woodruff <william@trailofbits.com>
  • Loading branch information
woodruffw committed May 13, 2024
commit 824b0a5cca6f9e4f4fde9c5ae4aa8de43e03ed40
2 changes: 1 addition & 1 deletion protos/sigstore_common.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ message RFC3161SignedTimestamp {
message PublicKey {
// DER-encoded public key, encoding method is specified by the
// key_details attribute.
optional bytes raw_bytes = 1;
bytes raw_bytes = 1 [(google.api.field_behavior) = REQUIRED];
// Key encoding and signature algorithm to use for this key.
PublicKeyDetails key_details = 2;
// Optional validity period for this key, *inclusive* of the endpoints.
Expand Down