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

11 lines
239 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.x509.util;
import java.util.Collection;
/* loaded from: classes6.dex */
public interface StreamParser {
Object read() throws StreamParsingException;
Collection readAll() throws StreamParsingException;
}