org.xipki.ca.api.profile.x509.X509CertUtil.java Source code

Java tutorial

Introduction

Here is the source code for org.xipki.ca.api.profile.x509.X509CertUtil.java

Source

/*
 *
 * This file is part of the XiPKI project.
 * Copyright (c) 2014 - 2015 Lijun Liao
 * Author: Lijun Liao
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License version 3
 * as published by the Free Software Foundation with the addition of the
 * following permission added to Section 15 as permitted in Section 7(a):
 * FOR ANY PART OF THE COVERED WORK IN WHICH THE COPYRIGHT IS OWNED BY
 * THE AUTHOR LIJUN LIAO. LIJUN LIAO DISCLAIMS THE WARRANTY OF NON INFRINGEMENT
 * OF THIRD PARTY RIGHTS.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * The interactive user interfaces in modified source and object code versions
 * of this program must display Appropriate Legal Notices, as required under
 * Section 5 of the GNU Affero General Public License.
 *
 * You can be released from the requirements of the license by purchasing
 * a commercial license. Buying such a license is mandatory as soon as you
 * develop commercial activities involving the XiPKI software without
 * disclosing the source code of your own applications.
 *
 * For more information, please contact Lijun Liao at this
 * address: lijun.liao@gmail.com
 */

package org.xipki.ca.api.profile.x509;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
import org.bouncycastle.asn1.x500.X500Name;
import org.bouncycastle.asn1.x509.AccessDescription;
import org.bouncycastle.asn1.x509.AuthorityInformationAccess;
import org.bouncycastle.asn1.x509.BasicConstraints;
import org.bouncycastle.asn1.x509.CRLDistPoint;
import org.bouncycastle.asn1.x509.CertificatePolicies;
import org.bouncycastle.asn1.x509.DistributionPoint;
import org.bouncycastle.asn1.x509.DistributionPointName;
import org.bouncycastle.asn1.x509.GeneralName;
import org.bouncycastle.asn1.x509.GeneralNames;
import org.bouncycastle.asn1.x509.PolicyInformation;
import org.bouncycastle.asn1.x509.PolicyQualifierInfo;
import org.bouncycastle.asn1.x509.UserNotice;
import org.bouncycastle.asn1.x509.X509ObjectIdentifiers;
import org.xipki.ca.api.CertprofileException;
import org.xipki.common.util.CollectionUtil;

/**
 * @author Lijun Liao
 */

public class X509CertUtil {

    public static BasicConstraints createBasicConstraints(final boolean isCa, final Integer pathLen) {
        BasicConstraints basicConstraints;
        if (isCa) {
            if (pathLen != null) {
                basicConstraints = new BasicConstraints(pathLen);
            } else {
                basicConstraints = new BasicConstraints(true);
            }
        } else {
            basicConstraints = new BasicConstraints(false);
        }
        return basicConstraints;
    }

    public static AuthorityInformationAccess createAuthorityInformationAccess(final List<String> caIssuerUris,
            final List<String> ocspUris) {
        if (CollectionUtil.isEmpty(ocspUris) && CollectionUtil.isEmpty(ocspUris)) {
            return null;
        }

        List<AccessDescription> accessDescriptions = new ArrayList<>(ocspUris.size());

        if (CollectionUtil.isNotEmpty(caIssuerUris)) {
            for (String uri : caIssuerUris) {
                GeneralName gn = new GeneralName(GeneralName.uniformResourceIdentifier, uri);
                accessDescriptions.add(new AccessDescription(X509ObjectIdentifiers.id_ad_caIssuers, gn));
            }
        }

        if (CollectionUtil.isNotEmpty(ocspUris)) {
            for (String uri : ocspUris) {
                GeneralName gn = new GeneralName(GeneralName.uniformResourceIdentifier, uri);
                accessDescriptions.add(new AccessDescription(X509ObjectIdentifiers.id_ad_ocsp, gn));
            }
        }

        DERSequence seq = new DERSequence(accessDescriptions.toArray(new AccessDescription[0]));
        return AuthorityInformationAccess.getInstance(seq);
    }

    public static CRLDistPoint createCRLDistributionPoints(final List<String> crlUris, final X500Name caSubject,
            final X500Name crlSignerSubject) throws IOException, CertprofileException {
        if (CollectionUtil.isEmpty(crlUris)) {
            return null;
        }

        int n = crlUris.size();
        DistributionPoint[] points = new DistributionPoint[1];

        GeneralName[] names = new GeneralName[n];
        for (int i = 0; i < n; i++) {
            names[i] = new GeneralName(GeneralName.uniformResourceIdentifier, crlUris.get(i));
        }
        // Distribution Point
        GeneralNames gns = new GeneralNames(names);
        DistributionPointName pointName = new DistributionPointName(gns);

        GeneralNames crlIssuer = null;
        if (crlSignerSubject != null && crlSignerSubject.equals(caSubject) == false) {
            GeneralName crlIssuerName = new GeneralName(crlSignerSubject);
            crlIssuer = new GeneralNames(crlIssuerName);
        }

        points[0] = new DistributionPoint(pointName, null, crlIssuer);

        return new CRLDistPoint(points);
    }

    public static CertificatePolicies createCertificatePolicies(
            final List<CertificatePolicyInformation> policyInfos) throws CertprofileException {
        if (CollectionUtil.isEmpty(policyInfos)) {
            return null;
        }

        int n = policyInfos.size();
        PolicyInformation[] pInfos = new PolicyInformation[n];

        int i = 0;
        for (CertificatePolicyInformation policyInfo : policyInfos) {
            String policyId = policyInfo.getCertPolicyId();
            List<CertificatePolicyQualifier> qualifiers = policyInfo.getQualifiers();

            ASN1Sequence policyQualifiers = null;
            if (CollectionUtil.isNotEmpty(qualifiers)) {
                policyQualifiers = createPolicyQualifiers(qualifiers);
            }

            ASN1ObjectIdentifier policyOid = new ASN1ObjectIdentifier(policyId);
            if (policyQualifiers == null) {
                pInfos[i] = new PolicyInformation(policyOid);
            } else {
                pInfos[i] = new PolicyInformation(policyOid, policyQualifiers);
            }
            i++;
        }

        return new CertificatePolicies(pInfos);
    }

    private static ASN1Sequence createPolicyQualifiers(final List<CertificatePolicyQualifier> qualifiers) {
        List<PolicyQualifierInfo> qualifierInfos = new ArrayList<>(qualifiers.size());
        for (CertificatePolicyQualifier qualifier : qualifiers) {
            PolicyQualifierInfo qualifierInfo;
            if (qualifier.getCpsUri() != null) {
                qualifierInfo = new PolicyQualifierInfo(qualifier.getCpsUri());
            } else if (qualifier.getUserNotice() != null) {
                UserNotice userNotice = new UserNotice(null, qualifier.getUserNotice());
                qualifierInfo = new PolicyQualifierInfo(PKCSObjectIdentifiers.id_spq_ets_unotice, userNotice);
            } else {
                qualifierInfo = null;
            }

            if (qualifierInfo != null) {
                qualifierInfos.add(qualifierInfo);
            }
            //PolicyQualifierId qualifierId
        }

        return new DERSequence(qualifierInfos.toArray(new PolicyQualifierInfo[0]));
    }

}