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

org.bouncycastle.cms.CMSPatchKit Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for CMS, PKCS, EAC, TSP, CMP, CRMF, OCSP, S/MIME and certificate generation. 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.

The newest version!
package org.bouncycastle.cms;

import java.io.IOException;

import org.bouncycastle.asn1.ASN1Encoding;
import org.bouncycastle.asn1.cms.SignerInfo;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;

/**
 * Toolkit methods for dealing with common errors in CMS
 * classes.
 */
public class CMSPatchKit
{
    /**
     * Create a SignerInformation based on original which uses definite-length
     * rather than DER encoding for verifying the signature on the signed attributes.
     *
     * @param original the source SignerInformation
     */
    public static SignerInformation createNonDERSignerInfo(
        SignerInformation original)
    {
        return new DLSignerInformation(original);
    }

    /**
     * Create a SignerInformation based on original has it's signatureAlgorithm replaced
     * with the passed in AlgorithmIdentifier.
     *
     * @param original the source SignerInformation
     */
    public static SignerInformation createWithSignatureAlgorithm(
        SignerInformation original,
        AlgorithmIdentifier signatureAlgorithm)
    {
         return new ModEncAlgSignerInformation(original, signatureAlgorithm);
    }

    private static class DLSignerInformation
        extends SignerInformation
    {
        protected DLSignerInformation(SignerInformation baseInfo)
        {
            super(baseInfo);
        }

        public byte[] getEncodedSignedAttributes()
            throws IOException
        {
            return signedAttributeSet.getEncoded(ASN1Encoding.DL);
        }
    }

    private static class ModEncAlgSignerInformation
        extends SignerInformation
    {
        protected ModEncAlgSignerInformation(
            SignerInformation baseInfo,
            AlgorithmIdentifier signatureAlgorithm)
        {
            super(baseInfo, editEncAlg(baseInfo.info, signatureAlgorithm));
        }

        private static SignerInfo editEncAlg(SignerInfo info, AlgorithmIdentifier signatureAlgorithm)
        {
            return new SignerInfo(info.getSID(), info.getDigestAlgorithm(), info.getAuthenticatedAttributes(),
                signatureAlgorithm, info.getEncryptedDigest(), info.getUnauthenticatedAttributes());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy