- 2.79.0 (latest)
- 2.77.0
- 2.76.0
- 2.75.0
- 2.74.0
- 2.73.0
- 2.71.0
- 2.69.0
- 2.68.0
- 2.65.0
- 2.64.0
- 2.63.0
- 2.61.0
- 2.60.0
- 2.59.0
- 2.58.0
- 2.57.0
- 2.56.0
- 2.55.0
- 2.54.0
- 2.53.0
- 2.52.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.40.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.28.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.12.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.0
- 2.4.10
- 2.3.1
- 2.2.16
public static final class BuildSignature.Builder extends GeneratedMessageV3.Builder<BuildSignature.Builder> implements BuildSignatureOrBuilderMessage encapsulating the signature of the verified build.
Protobuf type grafeas.v1beta1.build.BuildSignature
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > BuildSignature.BuilderImplements
BuildSignatureOrBuilderStatic Methods
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()| Type | Description |
| Descriptor |
Methods
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public BuildSignature.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)| Name | Description |
| field | FieldDescriptor |
| value | Object |
| Type | Description |
| BuildSignature.Builder |
build()
public BuildSignature build()| Type | Description |
| BuildSignature |
buildPartial()
public BuildSignature buildPartial()| Type | Description |
| BuildSignature |
clear()
public BuildSignature.Builder clear()| Type | Description |
| BuildSignature.Builder |
clearField(Descriptors.FieldDescriptor field)
public BuildSignature.Builder clearField(Descriptors.FieldDescriptor field)| Name | Description |
| field | FieldDescriptor |
| Type | Description |
| BuildSignature.Builder |
clearKeyId()
public BuildSignature.Builder clearKeyId() An ID for the key used to sign. This could be either an ID for the key
stored in public_key (such as the ID or fingerprint for a PGP key, or the
CN for a cert), or a reference to an external key (such as a reference to a
key in Cloud Key Management Service).
string key_id = 3;
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
clearKeyType()
public BuildSignature.Builder clearKeyType() The type of the key, either stored in public_key or referenced in
key_id.
.grafeas.v1beta1.build.BuildSignature.KeyType key_type = 4;
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
clearOneof(Descriptors.OneofDescriptor oneof)
public BuildSignature.Builder clearOneof(Descriptors.OneofDescriptor oneof)| Name | Description |
| oneof | OneofDescriptor |
| Type | Description |
| BuildSignature.Builder |
clearPublicKey()
public BuildSignature.Builder clearPublicKey() Public key of the builder which can be used to verify that the related
findings are valid and unchanged. If key_type is empty, this defaults
to PEM encoded public keys.
This field may be empty if key_id references an external key.
For Cloud Build based signatures, this is a PEM encoded public
key. To verify the Cloud Build signature, place the contents of
this field into a file (public.pem). The signature field is base64-decoded
into its binary representation in signature.bin, and the provenance bytes
from BuildDetails are base64-decoded into a binary representation in
signed.bin. OpenSSL can then verify the signature:
openssl sha256 -verify public.pem -signature signature.bin signed.bin
string public_key = 1;
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
clearSignature()
public BuildSignature.Builder clearSignature() Required. Signature of the related BuildProvenance. In JSON, this is
base-64 encoded.
bytes signature = 2;
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
clone()
public BuildSignature.Builder clone()| Type | Description |
| BuildSignature.Builder |
getDefaultInstanceForType()
public BuildSignature getDefaultInstanceForType()| Type | Description |
| BuildSignature |
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()| Type | Description |
| Descriptor |
getKeyId()
public String getKeyId() An ID for the key used to sign. This could be either an ID for the key
stored in public_key (such as the ID or fingerprint for a PGP key, or the
CN for a cert), or a reference to an external key (such as a reference to a
key in Cloud Key Management Service).
string key_id = 3;
| Type | Description |
| String | The keyId. |
getKeyIdBytes()
public ByteString getKeyIdBytes() An ID for the key used to sign. This could be either an ID for the key
stored in public_key (such as the ID or fingerprint for a PGP key, or the
CN for a cert), or a reference to an external key (such as a reference to a
key in Cloud Key Management Service).
string key_id = 3;
| Type | Description |
| ByteString | The bytes for keyId. |
getKeyType()
public BuildSignature.KeyType getKeyType() The type of the key, either stored in public_key or referenced in
key_id.
.grafeas.v1beta1.build.BuildSignature.KeyType key_type = 4;
| Type | Description |
| BuildSignature.KeyType | The keyType. |
getKeyTypeValue()
public int getKeyTypeValue() The type of the key, either stored in public_key or referenced in
key_id.
.grafeas.v1beta1.build.BuildSignature.KeyType key_type = 4;
| Type | Description |
| int | The enum numeric value on the wire for keyType. |
getPublicKey()
public String getPublicKey() Public key of the builder which can be used to verify that the related
findings are valid and unchanged. If key_type is empty, this defaults
to PEM encoded public keys.
This field may be empty if key_id references an external key.
For Cloud Build based signatures, this is a PEM encoded public
key. To verify the Cloud Build signature, place the contents of
this field into a file (public.pem). The signature field is base64-decoded
into its binary representation in signature.bin, and the provenance bytes
from BuildDetails are base64-decoded into a binary representation in
signed.bin. OpenSSL can then verify the signature:
openssl sha256 -verify public.pem -signature signature.bin signed.bin
string public_key = 1;
| Type | Description |
| String | The publicKey. |
getPublicKeyBytes()
public ByteString getPublicKeyBytes() Public key of the builder which can be used to verify that the related
findings are valid and unchanged. If key_type is empty, this defaults
to PEM encoded public keys.
This field may be empty if key_id references an external key.
For Cloud Build based signatures, this is a PEM encoded public
key. To verify the Cloud Build signature, place the contents of
this field into a file (public.pem). The signature field is base64-decoded
into its binary representation in signature.bin, and the provenance bytes
from BuildDetails are base64-decoded into a binary representation in
signed.bin. OpenSSL can then verify the signature:
openssl sha256 -verify public.pem -signature signature.bin signed.bin
string public_key = 1;
| Type | Description |
| ByteString | The bytes for publicKey. |
getSignature()
public ByteString getSignature() Required. Signature of the related BuildProvenance. In JSON, this is
base-64 encoded.
bytes signature = 2;
| Type | Description |
| ByteString | The signature. |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()| Type | Description |
| FieldAccessorTable |
isInitialized()
public final boolean isInitialized()| Type | Description |
| boolean |
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public BuildSignature.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)| Name | Description |
| input | CodedInputStream |
| extensionRegistry | ExtensionRegistryLite |
| Type | Description |
| BuildSignature.Builder |
| Type | Description |
| IOException |
mergeFrom(Message other)
public BuildSignature.Builder mergeFrom(Message other)| Name | Description |
| other | Message |
| Type | Description |
| BuildSignature.Builder |
mergeFrom(BuildSignature other)
public BuildSignature.Builder mergeFrom(BuildSignature other)| Name | Description |
| other | BuildSignature |
| Type | Description |
| BuildSignature.Builder |
mergeUnknownFields(UnknownFieldSet unknownFields)
public final BuildSignature.Builder mergeUnknownFields(UnknownFieldSet unknownFields)| Name | Description |
| unknownFields | UnknownFieldSet |
| Type | Description |
| BuildSignature.Builder |
setField(Descriptors.FieldDescriptor field, Object value)
public BuildSignature.Builder setField(Descriptors.FieldDescriptor field, Object value)| Name | Description |
| field | FieldDescriptor |
| value | Object |
| Type | Description |
| BuildSignature.Builder |
setKeyId(String value)
public BuildSignature.Builder setKeyId(String value) An ID for the key used to sign. This could be either an ID for the key
stored in public_key (such as the ID or fingerprint for a PGP key, or the
CN for a cert), or a reference to an external key (such as a reference to a
key in Cloud Key Management Service).
string key_id = 3;
| Name | Description |
| value | StringThe keyId to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setKeyIdBytes(ByteString value)
public BuildSignature.Builder setKeyIdBytes(ByteString value) An ID for the key used to sign. This could be either an ID for the key
stored in public_key (such as the ID or fingerprint for a PGP key, or the
CN for a cert), or a reference to an external key (such as a reference to a
key in Cloud Key Management Service).
string key_id = 3;
| Name | Description |
| value | ByteStringThe bytes for keyId to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setKeyType(BuildSignature.KeyType value)
public BuildSignature.Builder setKeyType(BuildSignature.KeyType value) The type of the key, either stored in public_key or referenced in
key_id.
.grafeas.v1beta1.build.BuildSignature.KeyType key_type = 4;
| Name | Description |
| value | BuildSignature.KeyTypeThe keyType to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setKeyTypeValue(int value)
public BuildSignature.Builder setKeyTypeValue(int value) The type of the key, either stored in public_key or referenced in
key_id.
.grafeas.v1beta1.build.BuildSignature.KeyType key_type = 4;
| Name | Description |
| value | intThe enum numeric value on the wire for keyType to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setPublicKey(String value)
public BuildSignature.Builder setPublicKey(String value) Public key of the builder which can be used to verify that the related
findings are valid and unchanged. If key_type is empty, this defaults
to PEM encoded public keys.
This field may be empty if key_id references an external key.
For Cloud Build based signatures, this is a PEM encoded public
key. To verify the Cloud Build signature, place the contents of
this field into a file (public.pem). The signature field is base64-decoded
into its binary representation in signature.bin, and the provenance bytes
from BuildDetails are base64-decoded into a binary representation in
signed.bin. OpenSSL can then verify the signature:
openssl sha256 -verify public.pem -signature signature.bin signed.bin
string public_key = 1;
| Name | Description |
| value | StringThe publicKey to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setPublicKeyBytes(ByteString value)
public BuildSignature.Builder setPublicKeyBytes(ByteString value) Public key of the builder which can be used to verify that the related
findings are valid and unchanged. If key_type is empty, this defaults
to PEM encoded public keys.
This field may be empty if key_id references an external key.
For Cloud Build based signatures, this is a PEM encoded public
key. To verify the Cloud Build signature, place the contents of
this field into a file (public.pem). The signature field is base64-decoded
into its binary representation in signature.bin, and the provenance bytes
from BuildDetails are base64-decoded into a binary representation in
signed.bin. OpenSSL can then verify the signature:
openssl sha256 -verify public.pem -signature signature.bin signed.bin
string public_key = 1;
| Name | Description |
| value | ByteStringThe bytes for publicKey to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public BuildSignature.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)| Name | Description |
| field | FieldDescriptor |
| index | int |
| value | Object |
| Type | Description |
| BuildSignature.Builder |
setSignature(ByteString value)
public BuildSignature.Builder setSignature(ByteString value) Required. Signature of the related BuildProvenance. In JSON, this is
base-64 encoded.
bytes signature = 2;
| Name | Description |
| value | ByteStringThe signature to set. |
| Type | Description |
| BuildSignature.Builder | This builder for chaining. |
setUnknownFields(UnknownFieldSet unknownFields)
public final BuildSignature.Builder setUnknownFields(UnknownFieldSet unknownFields)| Name | Description |
| unknownFields | UnknownFieldSet |
| Type | Description |
| BuildSignature.Builder |