Interface CertificateRawDataOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    CertificateRawData, CertificateRawData.Builder

    public interface CertificateRawDataOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getPrivateKey()
      Unencrypted PEM encoded RSA private key.
      com.google.protobuf.ByteString getPrivateKeyBytes()
      Unencrypted PEM encoded RSA private key.
      String getPublicCertificate()
      PEM encoded x.509 public key certificate.
      com.google.protobuf.ByteString getPublicCertificateBytes()
      PEM encoded x.509 public key certificate.
      • 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

      • getPublicCertificate

        String getPublicCertificate()
         PEM encoded x.509 public key certificate. This field is set once on
         certificate creation. Must include the header and footer. Example:
         <pre>
         -----BEGIN CERTIFICATE-----
         <certificate_value>
         -----END CERTIFICATE-----
         </pre>
         
        string public_certificate = 1;
        Returns:
        The publicCertificate.
      • getPublicCertificateBytes

        com.google.protobuf.ByteString getPublicCertificateBytes()
         PEM encoded x.509 public key certificate. This field is set once on
         certificate creation. Must include the header and footer. Example:
         <pre>
         -----BEGIN CERTIFICATE-----
         <certificate_value>
         -----END CERTIFICATE-----
         </pre>
         
        string public_certificate = 1;
        Returns:
        The bytes for publicCertificate.
      • getPrivateKey

        String getPrivateKey()
         Unencrypted PEM encoded RSA private key. This field is set once on
         certificate creation and then encrypted. The key size must be 2048
         bits or fewer. Must include the header and footer. Example:
         <pre>
         -----BEGIN RSA PRIVATE KEY-----
         <unencrypted_key_value>
         -----END RSA PRIVATE KEY-----
         </pre>
         @InputOnly
         
        string private_key = 2;
        Returns:
        The privateKey.
      • getPrivateKeyBytes

        com.google.protobuf.ByteString getPrivateKeyBytes()
         Unencrypted PEM encoded RSA private key. This field is set once on
         certificate creation and then encrypted. The key size must be 2048
         bits or fewer. Must include the header and footer. Example:
         <pre>
         -----BEGIN RSA PRIVATE KEY-----
         <unencrypted_key_value>
         -----END RSA PRIVATE KEY-----
         </pre>
         @InputOnly
         
        string private_key = 2;
        Returns:
        The bytes for privateKey.