what-the-bank/sources/org/bouncycastle/util/StreamParser.java

11 lines
234 B
Java

package org.bouncycastle.util;
import java.util.Collection;
/* loaded from: classes6.dex */
public interface StreamParser {
Object read() throws StreamParsingException;
Collection readAll() throws StreamParsingException;
}