Class DERGenerator

  • All Implemented Interfaces:

    
    public abstract class DERGenerator
    extends ASN1Generator
                        

    Basic class for streaming DER encoding generators.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      DERGenerator(OutputStream out, int tagNo, boolean isExplicit) Create a DER encoding generator for a tagged object.
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      • Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1Generator

        getRawOutputStream
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • DERGenerator

        DERGenerator(OutputStream out, int tagNo, boolean isExplicit)
        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.
    • Method Detail