ENCODING RULE: tag = 0x30 (always constructed)
73747576777879808182
/** * Retrieves the ber representation. * @return ber representation */ public BERElement getBERElement() { BERSequence seq = new BERSequence(); seq.addElement(new BEROctetString(m_type)); seq.addElement(new BEROctetString(m_val)); return seq; }