package org.bouncycastle.cms;
import java.security.GeneralSecurityException;
import java.security.Provider;
import java.security.SecureRandom;
import javax.crypto.SecretKey;
import org.bouncycastle.asn1.cms.RecipientInfo;
interface IntRecipientInfoGenerator
{
/**
* Generate a RecipientInfo object for the given key.
* @param contentEncryptionKey the SecretKey
to encrypt
* @param random a source of randomness
* @param prov the default provider to use
* @return a RecipientInfo
object for the given key
* @throws GeneralSecurityException
*/
RecipientInfo generate(SecretKey contentEncryptionKey, SecureRandom random,
Provider prov) throws GeneralSecurityException;
}