package org.bouncycastle.x509.util;
import java.util.Collection;
public interface StreamParser
{
Object read() throws StreamParsingException;
Collection readAll() throws StreamParsingException;
}
package org.bouncycastle.x509.util;
import java.util.Collection;
public interface StreamParser
{
Object read() throws StreamParsingException;
Collection readAll() throws StreamParsingException;
}