org.bouncycastle.mail.smime
Class SMIMESignedGenerator
java.lang.Object
|
+--org.bouncycastle.mail.smime.SMIMEGenerator
|
+--org.bouncycastle.mail.smime.SMIMESignedGenerator
- public class SMIMESignedGenerator
- extends SMIMEGenerator
general class for generating a pkcs7-signature message.
A simple example of usage.
CertStore certs...
SMIMESignedGenerator fact = new SMIMESignedGenerator();
fact.addSigner(privKey, cert, SMIMESignedGenerator.DIGEST_SHA1);
fact.addCertificatesAndCRLs(certs);
MimeMultipart smime = fact.generate(content, "BC");
Method Summary |
void |
addCertificatesAndCRLs(org.bouncycastle.jce.cert.CertStore certStore)
add the certificates and CRLs contained in the given CertStore
to the pool that will be included in the encoded signature block. |
void |
addSigner(java.security.PrivateKey key,
java.security.cert.X509Certificate cert,
java.lang.String digestOID)
add a signer - no attributes other than the default ones will be
provided here. |
void |
addSigner(java.security.PrivateKey key,
java.security.cert.X509Certificate cert,
java.lang.String digestOID,
org.bouncycastle.asn1.cms.AttributeTable signedAttr,
org.bouncycastle.asn1.cms.AttributeTable unsignedAttr)
add a signer with extra signed/unsigned attributes. |
javax.mail.internet.MimeMultipart |
generate(javax.mail.internet.MimeBodyPart content,
java.lang.String sigProvider)
generate a signed object that contains an SMIME Signed Multipart
object using the given provider. |
javax.mail.internet.MimeMultipart |
generate(javax.mail.internet.MimeMessage message,
java.lang.String sigProvider)
generate a signed object that contains an SMIME Signed Multipart
object using the given provider from the given MimeMessage |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DIGEST_SHA1
public static final java.lang.String DIGEST_SHA1
DIGEST_MD5
public static final java.lang.String DIGEST_MD5
ENCRYPTION_RSA
public static final java.lang.String ENCRYPTION_RSA
ENCRYPTION_DSA
public static final java.lang.String ENCRYPTION_DSA
SMIMESignedGenerator
public SMIMESignedGenerator()
- base constructor
addSigner
public void addSigner(java.security.PrivateKey key,
java.security.cert.X509Certificate cert,
java.lang.String digestOID)
throws java.lang.IllegalArgumentException
- add a signer - no attributes other than the default ones will be
provided here.
addSigner
public void addSigner(java.security.PrivateKey key,
java.security.cert.X509Certificate cert,
java.lang.String digestOID,
org.bouncycastle.asn1.cms.AttributeTable signedAttr,
org.bouncycastle.asn1.cms.AttributeTable unsignedAttr)
throws java.lang.IllegalArgumentException
- add a signer with extra signed/unsigned attributes.
addCertificatesAndCRLs
public void addCertificatesAndCRLs(org.bouncycastle.jce.cert.CertStore certStore)
throws org.bouncycastle.jce.cert.CertStoreException,
SMIMEException
- add the certificates and CRLs contained in the given CertStore
to the pool that will be included in the encoded signature block.
Note: this assumes the CertStore will support null in the get
methods.
generate
public javax.mail.internet.MimeMultipart generate(javax.mail.internet.MimeBodyPart content,
java.lang.String sigProvider)
throws java.security.NoSuchAlgorithmException,
java.security.NoSuchProviderException,
SMIMEException
- generate a signed object that contains an SMIME Signed Multipart
object using the given provider.
generate
public javax.mail.internet.MimeMultipart generate(javax.mail.internet.MimeMessage message,
java.lang.String sigProvider)
throws java.security.NoSuchAlgorithmException,
java.security.NoSuchProviderException,
SMIMEException
- generate a signed object that contains an SMIME Signed Multipart
object using the given provider from the given MimeMessage