Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PemObjectParser.java « pem « io « util « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5192078fe407800a54bfa3b4fa6d4def65ff0c7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.spongycastle.util.io.pem;

import java.io.IOException;

/**
 * Base interface for parsers to convert PEM objects into specific objects.
 */
public interface PemObjectParser
{
    /**
     * Parse an object out of the PEM object passed in.
     *
     * @param obj the PEM object containing the details for the specific object.
     * @return a specific object represented by the  PEM object.
     * @throws IOException on a parsing error.
     */
    Object parseObject(PemObject obj)
            throws IOException;
}