15 lines
439 B
Java
15 lines
439 B
Java
package org.bouncycastle.x509;
|
|
|
|
import java.io.InputStream;
|
|
import java.util.Collection;
|
|
import org.bouncycastle.x509.util.StreamParsingException;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public abstract class X509StreamParserSpi {
|
|
public abstract void engineInit(InputStream inputStream);
|
|
|
|
public abstract Object engineRead() throws StreamParsingException;
|
|
|
|
public abstract Collection engineReadAll() throws StreamParsingException;
|
|
}
|