26 lines
730 B
Java
26 lines
730 B
Java
package org.bouncycastle.asn1;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class BERSequenceGenerator extends BERGenerator {
|
|
public void close() throws IOException {
|
|
writeBEREnd();
|
|
}
|
|
|
|
public void addObject(ASN1Encodable aSN1Encodable) throws IOException {
|
|
aSN1Encodable.toASN1Primitive().encode(new BEROutputStream(this._out));
|
|
}
|
|
|
|
public BERSequenceGenerator(OutputStream outputStream, int i, boolean z) throws IOException {
|
|
super(outputStream, i, z);
|
|
writeBERHeader(48);
|
|
}
|
|
|
|
public BERSequenceGenerator(OutputStream outputStream) throws IOException {
|
|
super(outputStream);
|
|
writeBERHeader(48);
|
|
}
|
|
}
|