Package dev.sigstore.fulcio.v2
Interface SigningCertificateDetachedSCTOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
SigningCertificateDetachedSCT,SigningCertificateDetachedSCT.Builder
public interface SigningCertificateDetachedSCTOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CertificateChaingetChain()The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate.CertificateChainOrBuildergetChainOrBuilder()The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate.com.google.protobuf.ByteStringgetSignedCertificateTimestamp()The signed certificate timestamp is a promise for including the certificate in a certificate transparency log.booleanhasChain()The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasChain
boolean hasChain()
The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate. All values are PEM-encoded certificates.
.dev.sigstore.fulcio.v2.CertificateChain chain = 1;- Returns:
- Whether the chain field is set.
-
getChain
CertificateChain getChain()
The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate. All values are PEM-encoded certificates.
.dev.sigstore.fulcio.v2.CertificateChain chain = 1;- Returns:
- The chain.
-
getChainOrBuilder
CertificateChainOrBuilder getChainOrBuilder()
The certificate chain serialized with the leaf certificate first, followed by all intermediate certificates (if present), finishing with the root certificate. All values are PEM-encoded certificates.
.dev.sigstore.fulcio.v2.CertificateChain chain = 1;
-
getSignedCertificateTimestamp
com.google.protobuf.ByteString getSignedCertificateTimestamp()
The signed certificate timestamp is a promise for including the certificate in a certificate transparency log. It can be "stapled" to verify the inclusion of a certificate in the log in an offline fashion.
bytes signed_certificate_timestamp = 2;- Returns:
- The signedCertificateTimestamp.
-
-