You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// DER-encoded public key, encoding method is specified by the
// key_details attribute.
optionalbytesraw_bytes=1;
// Key encoding and signature algorithm to use for this key.
PublicKeyDetailskey_details=2;
// Optional validity period for this key, *inclusive* of the endpoints.
optionalTimeRangevalid_for=3;
}
We should be able to drop the optional qualifier here without causing any real breakage -- proto3 is still implicitly optional everywhere, so dropping optional will just refine the type hints.
The text was updated successfully, but these errors were encountered:
In practice, the
PublicKey
message is used in settings that require direct access to theraw_bytes
, with the assumption that it isn't missing.protobuf-specs/protos/sigstore_common.proto
Lines 147 to 155 in 2c9be05
We should be able to drop the
optional
qualifier here without causing any real breakage -- proto3 is still implicitly optional everywhere, so droppingoptional
will just refine the type hints.The text was updated successfully, but these errors were encountered: