mirror of
https://github.com/containers/skopeo.git
synced 2025-09-22 10:27:08 +00:00
(skopeo copy) and (skopeo sync) now support --sign-by-sigstore=param-file, using the containers-sigstore-signing-params.yaml(5) file format. That notably adds support for Fulcio and Rekor signing. Signed-off-by: Miloslav Trmač <mitr@redhat.com>
34 lines
503 B
Protocol Buffer
34 lines
503 B
Protocol Buffer
// Built-in base types for API calls. Primarily useful as return types.
|
|
|
|
syntax = "proto2";
|
|
option go_package = "base";
|
|
|
|
package appengine.base;
|
|
|
|
message StringProto {
|
|
required string value = 1;
|
|
}
|
|
|
|
message Integer32Proto {
|
|
required int32 value = 1;
|
|
}
|
|
|
|
message Integer64Proto {
|
|
required int64 value = 1;
|
|
}
|
|
|
|
message BoolProto {
|
|
required bool value = 1;
|
|
}
|
|
|
|
message DoubleProto {
|
|
required double value = 1;
|
|
}
|
|
|
|
message BytesProto {
|
|
required bytes value = 1 [ctype=CORD];
|
|
}
|
|
|
|
message VoidProto {
|
|
}
|