Interface SignatureInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SignatureInfo,SignatureInfo.Builder
public interface SignatureInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCustomerKmsKeyVersion()The resource name of the customer CryptoKeyVersion used for signing.com.google.protobuf.ByteStringgetCustomerKmsKeyVersionBytes()The resource name of the customer CryptoKeyVersion used for signing.StringgetGooglePublicKeyPem()The public key for the Google default signing, encoded in PEM format.com.google.protobuf.ByteStringgetGooglePublicKeyPemBytes()The public key for the Google default signing, encoded in PEM format.com.google.protobuf.ByteStringgetSignature()The digital signature.SignatureInfo.VerificationInfoCasegetVerificationInfoCase()booleanhasCustomerKmsKeyVersion()The resource name of the customer CryptoKeyVersion used for signing.booleanhasGooglePublicKeyPem()The public key for the Google default signing, encoded in PEM format.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSignature
com.google.protobuf.ByteString getSignature()
The digital signature.
bytes signature = 1;- Returns:
- The signature.
-
hasGooglePublicKeyPem
boolean hasGooglePublicKeyPem()
The public key for the Google default signing, encoded in PEM format. The signature was created using a private key which may be verified using this public key.
string google_public_key_pem = 2;- Returns:
- Whether the googlePublicKeyPem field is set.
-
getGooglePublicKeyPem
String getGooglePublicKeyPem()
The public key for the Google default signing, encoded in PEM format. The signature was created using a private key which may be verified using this public key.
string google_public_key_pem = 2;- Returns:
- The googlePublicKeyPem.
-
getGooglePublicKeyPemBytes
com.google.protobuf.ByteString getGooglePublicKeyPemBytes()
The public key for the Google default signing, encoded in PEM format. The signature was created using a private key which may be verified using this public key.
string google_public_key_pem = 2;- Returns:
- The bytes for googlePublicKeyPem.
-
hasCustomerKmsKeyVersion
boolean hasCustomerKmsKeyVersion()
The resource name of the customer CryptoKeyVersion used for signing.
string customer_kms_key_version = 3;- Returns:
- Whether the customerKmsKeyVersion field is set.
-
getCustomerKmsKeyVersion
String getCustomerKmsKeyVersion()
The resource name of the customer CryptoKeyVersion used for signing.
string customer_kms_key_version = 3;- Returns:
- The customerKmsKeyVersion.
-
getCustomerKmsKeyVersionBytes
com.google.protobuf.ByteString getCustomerKmsKeyVersionBytes()
The resource name of the customer CryptoKeyVersion used for signing.
string customer_kms_key_version = 3;- Returns:
- The bytes for customerKmsKeyVersion.
-
getVerificationInfoCase
SignatureInfo.VerificationInfoCase getVerificationInfoCase()
-
-