All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.mail.smime.MailcapUtil Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for doing S/MIME with the Jakarta Mail APIs. The APIs are designed primarily to be used in conjunction with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.5
Show newest version
package org.bouncycastle.mail.smime;

import jakarta.activation.CommandInfo;
import jakarta.activation.MailcapCommandMap;

class MailcapUtil
{
    static MailcapCommandMap addCommands(MailcapCommandMap mc)
    {
        CommandInfo[] commands = mc.getAllCommands("application/pkcs7-signature");
        boolean bcFound = false;
        for (int i = 0; i != commands.length; i++)
        {
            if ("org.bouncycastle.mail.smime.handlers.pkcs7_signature".equals(commands[i].getCommandClass()))
            {
                bcFound = true;
                break;
            }
        }

        // only call add if we're not there already.
        if (!bcFound)
        {
            mc.addMailcap("application/pkcs7-signature;; x-java-content-handler=org.bouncycastle.mail.smime.handlers.pkcs7_signature");
            mc.addMailcap("application/pkcs7-mime;; x-java-content-handler=org.bouncycastle.mail.smime.handlers.pkcs7_mime");
            mc.addMailcap("application/x-pkcs7-signature;; x-java-content-handler=org.bouncycastle.mail.smime.handlers.x_pkcs7_signature");
            mc.addMailcap("application/x-pkcs7-mime;; x-java-content-handler=org.bouncycastle.mail.smime.handlers.x_pkcs7_mime");
            mc.addMailcap("multipart/signed;; x-java-content-handler=org.bouncycastle.mail.smime.handlers.multipart_signed");
        }

        return mc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy