Package org.bouncycastle.asn1
Class DERGenerator
java.lang.Object
org.bouncycastle.asn1.ASN1Generator
org.bouncycastle.asn1.DERGenerator
- Direct Known Subclasses:
DERSequenceGenerator
Basic class for streaming DER encoding generators.
-
Field Summary
Fields inherited from class org.bouncycastle.asn1.ASN1Generator
_out
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
DERGenerator
(OutputStream out) DERGenerator
(OutputStream out, int tagNo, boolean isExplicit) Create a DER encoding generator for a tagged object. -
Method Summary
Methods inherited from class org.bouncycastle.asn1.ASN1Generator
getRawOutputStream
-
Constructor Details
-
DERGenerator
-
DERGenerator
Create a DER encoding generator for a tagged object.- Parameters:
out
- the output stream to encode objects to.tagNo
- the tag number to head the output stream with.isExplicit
- true if the tagging should be explicit, false otherwise.
-