public class SMIMEToolkit
extends java.lang.Object
| Constructor and Description |
|---|
SMIMEToolkit(org.bouncycastle.operator.DigestCalculatorProvider digestCalculatorProvider)
Base constructor.
|
| Modifier and Type | Method and Description |
|---|---|
javax.mail.internet.MimeBodyPart |
decrypt(javax.mail.internet.MimeBodyPart mimePart,
org.bouncycastle.cms.RecipientId recipientId,
org.bouncycastle.cms.Recipient recipient)
Decrypt the passed in MIME part returning a part representing the decrypted content.
|
javax.mail.internet.MimeBodyPart |
decrypt(javax.mail.internet.MimeMessage message,
org.bouncycastle.cms.RecipientId recipientId,
org.bouncycastle.cms.Recipient recipient)
Decrypt the passed in MIME message returning a part representing the decrypted content.
|
javax.mail.internet.MimeBodyPart |
encrypt(javax.mail.internet.MimeBodyPart mimePart,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
Encrypt the passed in MIME part returning a new encrypted MIME part.
|
javax.mail.internet.MimeBodyPart |
encrypt(javax.mail.internet.MimeMessage message,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
Encrypt the passed in MIME message returning a new encrypted MIME part.
|
javax.mail.internet.MimeBodyPart |
encrypt(javax.mail.internet.MimeMultipart multiPart,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
Encrypt the passed in MIME multi-part returning a new encrypted MIME part.
|
org.bouncycastle.cert.X509CertificateHolder |
extractCertificate(javax.mail.internet.MimeMultipart message,
org.bouncycastle.cms.SignerInformation signerInformation)
Extract the signer's signing certificate from Multipart message content.
|
org.bouncycastle.cert.X509CertificateHolder |
extractCertificate(javax.mail.Part message,
org.bouncycastle.cms.SignerInformation signerInformation)
Extract the signer's signing certificate from the message.
|
boolean |
isEncrypted(javax.mail.Part message)
Return true if the passed in message (MimeBodyPart or MimeMessage) is encrypted.
|
boolean |
isSigned(javax.mail.internet.MimeMultipart message)
Return true if the passed in MimeMultipart is a signed one.
|
boolean |
isSigned(javax.mail.Part message)
Return true if the passed in message (MimeBodyPart or MimeMessage) is a signed one.
|
boolean |
isValidSignature(javax.mail.internet.MimeMultipart message,
org.bouncycastle.cms.SignerInformationVerifier verifier)
Return true if there is a signature on the message that can be verified by verifier..
|
boolean |
isValidSignature(javax.mail.Part message,
org.bouncycastle.cms.SignerInformationVerifier verifier)
Return true if there is a signature on the message that can be verified by the verifier.
|
javax.mail.internet.MimeMultipart |
sign(javax.mail.internet.MimeBodyPart message,
org.bouncycastle.cms.SignerInfoGenerator signerInfoGenerator)
Produce a signed message in multi-part format with the second part containing a detached signature for the first.
|
javax.mail.internet.MimeBodyPart |
signEncapsulated(javax.mail.internet.MimeBodyPart message,
org.bouncycastle.cms.SignerInfoGenerator signerInfoGenerator)
Produce a signed message in encapsulated format where the message is encoded in the signature..
|
public SMIMEToolkit(org.bouncycastle.operator.DigestCalculatorProvider digestCalculatorProvider)
digestCalculatorProvider - provider for any digest calculations required.public boolean isEncrypted(javax.mail.Part message)
throws javax.mail.MessagingException
message - message of interestjavax.mail.MessagingException - on a message processing issue.public boolean isSigned(javax.mail.Part message)
throws javax.mail.MessagingException
message - message of interestjavax.mail.MessagingException - on a message processing issue.public boolean isSigned(javax.mail.internet.MimeMultipart message)
throws javax.mail.MessagingException
message - message of interestjavax.mail.MessagingException - on a message processing issue.public boolean isValidSignature(javax.mail.Part message,
org.bouncycastle.cms.SignerInformationVerifier verifier)
throws SMIMEException,
javax.mail.MessagingException
message - a MIME part representing a signed message.verifier - the verifier we want to find a signer for.SMIMEException - on a SMIME handling issue.javax.mail.MessagingException - on a basic message processing exceptionpublic boolean isValidSignature(javax.mail.internet.MimeMultipart message,
org.bouncycastle.cms.SignerInformationVerifier verifier)
throws SMIMEException,
javax.mail.MessagingException
message - a MIME part representing a signed message.verifier - the verifier we want to find a signer for.SMIMEException - on a SMIME handling issue.javax.mail.MessagingException - on a basic message processing exceptionpublic org.bouncycastle.cert.X509CertificateHolder extractCertificate(javax.mail.Part message,
org.bouncycastle.cms.SignerInformation signerInformation)
throws SMIMEException,
javax.mail.MessagingException
message - a MIME part/MIME message representing a signed message.signerInformation - the signer information identifying the signer of interest.SMIMEExceptionjavax.mail.MessagingExceptionpublic org.bouncycastle.cert.X509CertificateHolder extractCertificate(javax.mail.internet.MimeMultipart message,
org.bouncycastle.cms.SignerInformation signerInformation)
throws SMIMEException,
javax.mail.MessagingException
message - a MIME Multipart part representing a signed message.signerInformation - the signer information identifying the signer of interest.SMIMEExceptionjavax.mail.MessagingExceptionpublic javax.mail.internet.MimeMultipart sign(javax.mail.internet.MimeBodyPart message,
org.bouncycastle.cms.SignerInfoGenerator signerInfoGenerator)
throws SMIMEException
message - the message to be signed.signerInfoGenerator - the generator to be used to generate the signature.SMIMEException - on an exception calculating or creating the signed data.public javax.mail.internet.MimeBodyPart signEncapsulated(javax.mail.internet.MimeBodyPart message,
org.bouncycastle.cms.SignerInfoGenerator signerInfoGenerator)
throws SMIMEException
message - the message to be signed.signerInfoGenerator - the generator to be used to generate the signature.SMIMEException - on an exception calculating or creating the signed data.public javax.mail.internet.MimeBodyPart encrypt(javax.mail.internet.MimeBodyPart mimePart,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
throws SMIMEException
mimePart - the part to be encrypted.contentEncryptor - the encryptor to use for the actual message content.recipientGenerator - the generator for the target recipient.SMIMEException - in the event of an exception creating the encrypted part.public javax.mail.internet.MimeBodyPart encrypt(javax.mail.internet.MimeMultipart multiPart,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
throws SMIMEException,
javax.mail.MessagingException
multiPart - the multi-part to be encrypted.contentEncryptor - the encryptor to use for the actual message content.recipientGenerator - the generator for the target recipient.SMIMEException - in the event of an exception creating the encrypted part.javax.mail.MessagingExceptionpublic javax.mail.internet.MimeBodyPart encrypt(javax.mail.internet.MimeMessage message,
org.bouncycastle.operator.OutputEncryptor contentEncryptor,
org.bouncycastle.cms.RecipientInfoGenerator recipientGenerator)
throws SMIMEException
message - the multi-part to be encrypted.contentEncryptor - the encryptor to use for the actual message content.recipientGenerator - the generator for the target recipient.SMIMEException - in the event of an exception creating the encrypted part.public javax.mail.internet.MimeBodyPart decrypt(javax.mail.internet.MimeBodyPart mimePart,
org.bouncycastle.cms.RecipientId recipientId,
org.bouncycastle.cms.Recipient recipient)
throws SMIMEException,
javax.mail.MessagingException
mimePart - the part containing the encrypted data.recipientId - the recipient id in the date to be matched.recipient - the recipient to be used if a match is found.SMIMEException - on an exception doing the decryption.javax.mail.MessagingException - on an exception parsing the message,public javax.mail.internet.MimeBodyPart decrypt(javax.mail.internet.MimeMessage message,
org.bouncycastle.cms.RecipientId recipientId,
org.bouncycastle.cms.Recipient recipient)
throws SMIMEException,
javax.mail.MessagingException
message - the message containing the encrypted data.recipientId - the recipient id in the date to be matched.recipient - the recipient to be used if a match is found.SMIMEException - on an exception doing the decryption.javax.mail.MessagingException - on an exception parsing the message,