Uses of Enum
org.cryptacular.pem.Format

Packages that use Format
Package
Description
 
  • Uses of Format in org.cryptacular.pem

    Fields in org.cryptacular.pem declared as Format
    Modifier and Type
    Field
    Description
    private final Format
    Descriptor.format
    The RFC PEM specification which governs the format of this PEM object.
    Methods in org.cryptacular.pem that return Format
    Modifier and Type
    Method
    Description
    Descriptor.getFormat()
     
    private static Format
    PemParser.getFormat(String explanatoryText, String pemType, boolean isRFC4716Markers)
    Determines the RFC governing the format of the PEM file based of the parameters provided.
    static Format
    Format.valueOf(String name)
    Returns the enum constant of this type with the specified name.
    static Format[]
    Format.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in org.cryptacular.pem with parameters of type Format
    Modifier and Type
    Method
    Description
    private static void
    PemParser.assertLineLength(Format format, int maxLineLength)
    Throws an exception if the data contains rules restricted by their respective RFCs.
    private void
    PemObject.assertPemHeaderValid(List<org.bouncycastle.util.io.pem.PemHeader> headers, Set<String> specifiers, Format format, boolean allowX, boolean disregardX)
    Checks to make sure a given list of PemHeader instances the names specified are valid.
    private static org.bouncycastle.util.io.pem.PemHeader
    PemParser.parseHeader(BufferedReader reader, String line, Format format)
    Reads a header line which takes into account header types from RFC 1421 invalid input: '&' RFC 4716
    Constructors in org.cryptacular.pem with parameters of type Format
    Modifier
    Constructor
    Description
     
    Descriptor(Format formatParam, String explanatoryTextParam, String typeParam)
    Constructor with RFC format and explanatory text.