org.bouncycastle.cms.IntRecipientInfoGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcmail Show documentation
Show all versions of bcmail Show documentation
A patched bouncycastle-mail
The newest version!
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;
}