From 824b0a5cca6f9e4f4fde9c5ae4aa8de43e03ed40 Mon Sep 17 00:00:00 2001 From: William Woodruff Date: Mon, 13 May 2024 11:53:44 -0400 Subject: [PATCH] common: remove optional on PublicKey.raw_bytes Signed-off-by: William Woodruff --- protos/sigstore_common.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protos/sigstore_common.proto b/protos/sigstore_common.proto index 1f0fad33..3a2719db 100644 --- a/protos/sigstore_common.proto +++ b/protos/sigstore_common.proto @@ -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.