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

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

import java.util.Collection;

public interface StreamParser
{
    Object read() throws StreamParsingException;

    Collection readAll() throws StreamParsingException;
}