Interface CreateSigningCertificateRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.google.protobuf.ByteString getCertificateSigningRequest()
      PKCS#10 PEM-encoded certificate signing request Contains the public key to be stored in the requested certificate.
      Credentials getCredentials()
      Identity information about who possesses the private / public key pair presented
      CredentialsOrBuilder getCredentialsOrBuilder()
      Identity information about who possesses the private / public key pair presented
      CreateSigningCertificateRequest.KeyCase getKeyCase()  
      PublicKeyRequest getPublicKeyRequest()
      The public key to be stored in the requested certificate along with a signed challenge as proof of possession of the private key.
      PublicKeyRequestOrBuilder getPublicKeyRequestOrBuilder()
      The public key to be stored in the requested certificate along with a signed challenge as proof of possession of the private key.
      boolean hasCertificateSigningRequest()
      PKCS#10 PEM-encoded certificate signing request Contains the public key to be stored in the requested certificate.
      boolean hasCredentials()
      Identity information about who possesses the private / public key pair presented
      boolean hasPublicKeyRequest()
      The public key to be stored in the requested certificate along with a signed challenge as proof of possession of the private key.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasCredentials

        boolean hasCredentials()
        
         Identity information about who possesses the private / public key pair presented
         
        .dev.sigstore.fulcio.v2.Credentials credentials = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the credentials field is set.
      • getCredentials

        Credentials getCredentials()
        
         Identity information about who possesses the private / public key pair presented
         
        .dev.sigstore.fulcio.v2.Credentials credentials = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The credentials.
      • getCredentialsOrBuilder

        CredentialsOrBuilder getCredentialsOrBuilder()
        
         Identity information about who possesses the private / public key pair presented
         
        .dev.sigstore.fulcio.v2.Credentials credentials = 1 [(.google.api.field_behavior) = REQUIRED];
      • hasPublicKeyRequest

        boolean hasPublicKeyRequest()
        
         The public key to be stored in the requested certificate along with a signed
         challenge as proof of possession of the private key.
         
        .dev.sigstore.fulcio.v2.PublicKeyRequest public_key_request = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the publicKeyRequest field is set.
      • getPublicKeyRequest

        PublicKeyRequest getPublicKeyRequest()
        
         The public key to be stored in the requested certificate along with a signed
         challenge as proof of possession of the private key.
         
        .dev.sigstore.fulcio.v2.PublicKeyRequest public_key_request = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The publicKeyRequest.
      • getPublicKeyRequestOrBuilder

        PublicKeyRequestOrBuilder getPublicKeyRequestOrBuilder()
        
         The public key to be stored in the requested certificate along with a signed
         challenge as proof of possession of the private key.
         
        .dev.sigstore.fulcio.v2.PublicKeyRequest public_key_request = 2 [(.google.api.field_behavior) = REQUIRED];
      • hasCertificateSigningRequest

        boolean hasCertificateSigningRequest()
        
         PKCS#10 PEM-encoded certificate signing request
        
         Contains the public key to be stored in the requested certificate. All other CSR fields
         are ignored. Since the CSR is self-signed, it also acts as a proof of posession of
         the private key.
         
        bytes certificate_signing_request = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the certificateSigningRequest field is set.
      • getCertificateSigningRequest

        com.google.protobuf.ByteString getCertificateSigningRequest()
        
         PKCS#10 PEM-encoded certificate signing request
        
         Contains the public key to be stored in the requested certificate. All other CSR fields
         are ignored. Since the CSR is self-signed, it also acts as a proof of posession of
         the private key.
         
        bytes certificate_signing_request = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The certificateSigningRequest.