using System; using Org.BouncyCastle.Asn1.Cms; using Org.BouncyCastle.Crypto.Parameters; using Org.BouncyCastle.Security; namespace Org.BouncyCastle.Cms { public interface RecipientInfoGenerator { /// /// Generate a RecipientInfo object for the given key. /// /// /// A /// /// /// A /// /// /// A /// /// RecipientInfo Generate(KeyParameter contentEncryptionKey, SecureRandom random); } }