Class PemReader.Section

  • Enclosing class:
    PemReader

    public static final class PemReader.Section
    extends java.lang.Object
    Section in the PEM file.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private byte[] base64decodedBytes
      Base64-decoded bytes.
      private java.lang.String title
      Title.
    • Constructor Summary

      Constructors 
      Constructor Description
      Section​(java.lang.String title, byte[] base64decodedBytes)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      byte[] getBase64DecodedBytes()
      Returns the base64-decoded bytes (modifiable array).
      java.lang.String getTitle()
      Returns the title.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • title

        private final java.lang.String title
        Title.
      • base64decodedBytes

        private final byte[] base64decodedBytes
        Base64-decoded bytes.
    • Constructor Detail

      • Section

        Section​(java.lang.String title,
                byte[] base64decodedBytes)
        Parameters:
        title - title
        base64decodedBytes - base64-decoded bytes
    • Method Detail

      • getTitle

        public java.lang.String getTitle()
        Returns the title.
      • getBase64DecodedBytes

        public byte[] getBase64DecodedBytes()
        Returns the base64-decoded bytes (modifiable array).