ContentInfo ::= SEQUENCE { contentType ContentType, content [0] EXPLICIT ANY DEFINED BY contentType OPTIONAL }
contentType = (Asn1ObjectIdentifier)seq.readObject(); content = (Asn1TaggedObject)seq.readObject();
if (content != null) { return content.getObject(tag, true); } return null;
return contentType;