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

StreamParser.java « util « x509 « spongycastle « org « java « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f0db6643e9f373ba80e6eeb9cbe3467fa173e96e (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.x509.util;

import java.util.Collection;

public interface StreamParser
{
    Object read() throws StreamParsingException;

    Collection readAll() throws StreamParsingException;
}