EncryptedContentInfoParser
using Org.BouncyCastle.Asn1.X509;
namespace Org.BouncyCastle.Asn1.Cms
{
public class EncryptedContentInfoParser
{
private readonly DerObjectIdentifier m_contentType;
private readonly AlgorithmIdentifier m_contentEncryptionAlgorithm;
private readonly Asn1TaggedObjectParser m_encryptedContent;
public DerObjectIdentifier ContentType => m_contentType;
public AlgorithmIdentifier ContentEncryptionAlgorithm => m_contentEncryptionAlgorithm;
public EncryptedContentInfoParser(Asn1SequenceParser seq)
{
m_contentType = (DerObjectIdentifier)seq.ReadObject();
m_contentEncryptionAlgorithm = AlgorithmIdentifier.GetInstance(seq.ReadObject().ToAsn1Object());
m_encryptedContent = (Asn1TaggedObjectParser)seq.ReadObject();
}
public IAsn1Convertible GetEncryptedContent(int tag)
{
return Asn1Utilities.ParseContextBaseUniversal(m_encryptedContent, 0, false, tag);
}
}
}