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 String
getCustomerKmsKeyVersion()
The resource name of the customer CryptoKeyVersion used for signing.com.google.protobuf.ByteString
getCustomerKmsKeyVersionBytes()
The resource name of the customer CryptoKeyVersion used for signing.String
getGooglePublicKeyPem()
The public key for the Google default signing, encoded in PEM format.com.google.protobuf.ByteString
getGooglePublicKeyPemBytes()
The public key for the Google default signing, encoded in PEM format.com.google.protobuf.ByteString
getSignature()
The digital signature.SignatureInfo.VerificationInfoCase
getVerificationInfoCase()
boolean
hasCustomerKmsKeyVersion()
The resource name of the customer CryptoKeyVersion used for signing.boolean
hasGooglePublicKeyPem()
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()
-
-