aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/prov/src/main/java/org/spongycastle/x509/util/StreamParser.java
blob: f0db6643e9f373ba80e6eeb9cbe3467fa173e96e (plain)
1
2
3
4
5
6
7
8
9
10
package org.spongycastle.x509.util;

import java.util.Collection;

public interface StreamParser
{
    Object read() throws StreamParsingException;

    Collection readAll() throws StreamParsingException;
}