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

import java.util.Collection;

public interface StreamParser
{
    Object read() throws StreamParsingException;

    Collection readAll() throws StreamParsingException;
}