Class BERSequence

  • All Implemented Interfaces:
    io.anyline.nfc.bouncycastle.asn1.ASN1Encodable , io.anyline.nfc.bouncycastle.util.Encodable , io.anyline.nfc.bouncycastle.util.Iterable , java.lang.Iterable

    
    public class BERSequence
    extends ASN1Sequence
                        

    Indefinite length SEQUENCE of objects.

    Length field has value 0x80, and the sequence ends with two bytes of: 0x00, 0x00.

    For X.690 syntax rules, see ASN1Sequence.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

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

        getInstance, getInstance, getObjectAt, getObjects, hashCode, iterator, parser, size, toArray, toString
      • Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1Primitive

        encodeTo, encodeTo, equals, equals, equals, fromByteArray, toASN1Primitive
      • Methods inherited from class io.anyline.nfc.bouncycastle.util.Iterable

        iterator
      • Methods inherited from class io.anyline.nfc.bouncycastle.asn1.ASN1Object

        equals, getEncoded, getEncoded
      • Methods inherited from class java.lang.Iterable

        forEach, iterator, spliterator
      • Methods inherited from class java.lang.Object

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

      • BERSequence

        BERSequence()
        Create an empty sequence
      • BERSequence

        BERSequence(ASN1Encodable element)
        Create a sequence containing one object
      • BERSequence

        BERSequence(ASN1EncodableVector elementVector)
        Create a sequence containing a vector of objects.
      • BERSequence

        BERSequence(Array<ASN1Encodable> elements)
        Create a sequence containing an array of objects.
    • Method Detail