summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/util/StreamParser.java
blob: 13f2b1630d3221fc3bbebb1aa25d5908747a7203 (plain)
1
2
3
4
5
6
7
8
9
10
package org.bouncycastle.util;

import java.util.Collection;

public interface StreamParser
{
    Object read() throws StreamParsingException;

    Collection readAll() throws StreamParsingException;
}