add method

void add(
  1. ASN1Object o
)

Add an ASN1Object to the sequence. Objects will be serialized to BER in the order they were added

Implementation

void add(ASN1Object o) {
  elements.add(o);
}