blob: 13f2b1630d3221fc3bbebb1aa25d5908747a7203 [file] [log] [blame]
package org.bouncycastle.util;
import java.util.Collection;
public interface StreamParser
{
Object read() throws StreamParsingException;
Collection readAll() throws StreamParsingException;
}