blob: 6ab41d35a9d95567a7fcdc763cabc7b59c799f53 [file] [log] [blame]
package org.bouncycastle.cms;
import org.bouncycastle.asn1.cms.RecipientInfo;
import org.bouncycastle.operator.GenericKey;
public interface RecipientInfoGenerator
{
RecipientInfo generate(GenericKey contentEncryptionKey)
throws CMSException;
}