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