EncryptedContentInfo ::= SEQUENCE { contentType ContentType, contentEncryptionAlgorithm ContentEncryptionAlgorithmIdentifier, encryptedContent [0] IMPLICIT EncryptedContent OPTIONAL }
_contentType = (Asn1ObjectIdentifier)seq.readObject(); _contentEncryptionAlgorithm = AlgorithmIdentifier.getInstance(new ASN1InputStream(((DerSequence)seq.readObject()).getEncoded()).readObject()); _encryptedContent = (Asn1TaggedObject)seq.readObject();
return _contentEncryptionAlgorithm;
return _contentType;
return _encryptedContent.getObject(tag, false);