summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/x509/util/StreamParser.java
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;
}