Interface IPrettyPrintFormat

All Known Implementing Classes:
PrettyPrintFormat

public interface IPrettyPrintFormat
This class will display the certificate content in predefined format.
Version:
$Revision$, $Date$
  • Method Summary

    Modifier and Type
    Method
    Description
    toHexString(byte[] in)
    Retrieves a pretty print string of the given byte array.
    toHexString(byte[] in, int indentSize)
    Retrieves a pretty print string of the given byte array.
    toHexString(byte[] in, int indentSize, int lineLen)
    Retrieves a pretty print string of the given byte array.
    toHexString(byte[] in, int indentSize, int lineLen, String separator)
    Retrieves a pretty print string of the given byte array.
  • Method Details

    • toHexString

      String toHexString(byte[] in, int indentSize, int lineLen, String separator)
      Retrieves a pretty print string of the given byte array.
      Parameters:
      in - byte array
      indentSize - indentation size
      lineLen - length of line
      separator - separator string
      Returns:
      pretty print string
    • toHexString

      String toHexString(byte[] in, int indentSize, int lineLen)
      Retrieves a pretty print string of the given byte array.
      Parameters:
      in - byte array
      indentSize - indentation size
      lineLen - length of line
      Returns:
      pretty print string
    • toHexString

      String toHexString(byte[] in, int indentSize)
      Retrieves a pretty print string of the given byte array.
      Parameters:
      in - byte array
      indentSize - indentation size
      Returns:
      pretty print string
    • toHexString

      String toHexString(byte[] in)
      Retrieves a pretty print string of the given byte array.
      Parameters:
      in - byte array
      Returns:
      pretty print string