![JAR search and dependency download from the Maven repository](/logo.png)
org.spongycastle.mail.smime.SMIMEEnveloped Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scprov-jdk15 Show documentation
Show all versions of scprov-jdk15 Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle intended for Android.
Android ships with a stripped-down version of Bouncy Castle - this causes classloader collisions if you try to add
an alternative (updated/complete) Bouncy Castle jar.
This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5.
package org.spongycastle.mail.smime;
import java.io.IOException;
import java.io.InputStream;
import javax.mail.MessagingException;
import javax.mail.Part;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimePart;
import org.spongycastle.cms.CMSEnvelopedData;
import org.spongycastle.cms.CMSException;
/**
* containing class for an S/MIME pkcs7-mime encrypted MimePart.
*/
public class SMIMEEnveloped
extends CMSEnvelopedData
{
MimePart message;
private static InputStream getInputStream(
Part bodyPart)
throws MessagingException
{
try
{
return bodyPart.getInputStream();
}
catch (IOException e)
{
throw new MessagingException("can't extract input stream: " + e);
}
}
public SMIMEEnveloped(
MimeBodyPart message)
throws MessagingException, CMSException
{
super(getInputStream(message));
this.message = message;
}
public SMIMEEnveloped(
MimeMessage message)
throws MessagingException, CMSException
{
super(getInputStream(message));
this.message = message;
}
public MimePart getEncryptedContent()
{
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy