~brian-thomason/+junk/bouncycastle

« back to all changes in this revision

Viewing changes to src/org/bouncycastle/cms/RecipientInfoGenerator.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:20:32 UTC
  • Revision ID: brian.thomason@canonical.com-20111220172032-rdtm13jgdxtksacr
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.bouncycastle.cms;
 
2
 
 
3
import org.bouncycastle.asn1.cms.RecipientInfo;
 
4
import org.bouncycastle.operator.GenericKey;
 
5
 
 
6
public interface RecipientInfoGenerator
 
7
{
 
8
    RecipientInfo generate(GenericKey contentEncryptionKey)
 
9
        throws CMSException;
 
10
}