| java.lang.Object org.bouncycastle.mail.smime.SMIMEGenerator org.bouncycastle.mail.smime.SMIMECompressedGenerator
SMIMECompressedGenerator | public class SMIMECompressedGenerator extends SMIMEGenerator (Code) | | General class for generating a pkcs7-mime compressed message.
A simple example of usage.
SMIMECompressedGenerator fact = new SMIMECompressedGenerator();
MimeBodyPart smime = fact.generate(content, algorithm);
Note: Most clients expect the MimeBodyPart to be in a MimeMultipart
when it's sent.
|
Method Summary | |
public MimeBodyPart | generate(MimeBodyPart content, String compressionOID) | public MimeBodyPart | generate(MimeMessage message, String compressionOID) |
generate | public MimeBodyPart generate(MimeBodyPart content, String compressionOID) throws SMIMEException(Code) | | generate an compressed object that contains an SMIME Compressed
object using the given provider from the contents of the passed in
message
|
generate | public MimeBodyPart generate(MimeMessage message, String compressionOID) throws SMIMEException(Code) | | generate an compressed object that contains an SMIME Compressed
object using the given provider from the contents of the passed in
message
|
|
|