15 lines
318 B
Java
15 lines
318 B
Java
|
package org.bouncycastle.asn1;
|
||
|
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public abstract class ASN1Generator {
|
||
|
protected OutputStream _out;
|
||
|
|
||
|
public abstract OutputStream getRawOutputStream();
|
||
|
|
||
|
public ASN1Generator(OutputStream outputStream) {
|
||
|
this._out = outputStream;
|
||
|
}
|
||
|
}
|