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

org.cesecore.certificates.certificate.certextensions.standard.DocumentTypeList Maven / Gradle / Ivy

/*************************************************************************
 *                                                                       *
 *  CESeCore: CE Security Core                                           *
 *                                                                       *
 *  This software is free software; you can redistribute it and/or       *
 *  modify it under the terms of the GNU Lesser General Public           *
 *  License as published by the Free Software Foundation; either         *
 *  version 2.1 of the License, or any later version.                    *
 *                                                                       *
 *  See terms of license at gnu.org.                                     *
 *                                                                       *
 *************************************************************************/ 
package org.cesecore.certificates.certificate.certextensions.standard;

import java.security.PublicKey;
import java.util.ArrayList;

import org.apache.log4j.Logger;
import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.DERPrintableString;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.asn1.DERSet;
import org.bouncycastle.asn1.util.ASN1Dump;
import org.cesecore.certificates.ca.CA;
import org.cesecore.certificates.ca.internal.CertificateValidity;
import org.cesecore.certificates.certificateprofile.CertificateProfile;
import org.cesecore.certificates.endentity.EndEntityInformation;

/**
 * Class for ICAO X509 certificate extension. 
 * See ICAO MRTD Technical Report LDS and PKI Maintenance 1.0 or later for spec of this extension.
 * 
 * documentTypeList  EXTENSION  ::=  {
 *     SYNTAX DocumentTypeListSyntax
 *     IDENTIFIED BY id-icao-mrtd-security-extensions-documentTypeList}
 * DocumentTypeListSyntax ::= SEQUENCE {
 *   version DocumentTypeListVersion,
 *   docTypeList SET OF DocumentType }
 *
 * DocumentTypeListVersion ::= INTEGER {v0(0)}
 * 
 * -- Document Type as contained in MRZ, e.g. "P" or "ID" where a
 * -- single letter denotes all document types starting with that letter
 * DocumentType ::= PrintableString(1..2) 
 * 
 * @version $Id: DocumentTypeList.java 24408 2016-09-23 06:56:00Z anatom $
 */
public class DocumentTypeList extends StandardCertificateExtension {
    private static final long serialVersionUID = 1L;
    private static final Logger log = Logger.getLogger(DocumentTypeList.class);

    @Override
    public void init(final CertificateProfile certProf) {
        super.setOID("2.23.136.1.1.6.2");
        super.setCriticalFlag(certProf.getDocumentTypeListCritical());
    }
    
    @Override
    public ASN1Encodable getValue(final EndEntityInformation subject, final CA ca, final CertificateProfile certProfile,
            final PublicKey userPublicKey, final PublicKey caPublicKey, CertificateValidity val) {
        
        ArrayList docTypes = certProfile.getDocumentTypeList();
        if(docTypes.size() == 0) {
            if (log.isDebugEnabled()) {
                log.debug("No DocumentTypeList to make a certificate extension");
            }
            return null;
        }
        
        ASN1EncodableVector vec = new ASN1EncodableVector();

        // version
        vec.add(new ASN1Integer(0));
        
        // Add SET OF DocumentType
        final ASN1Encodable[] dts = new ASN1Encodable[docTypes.size()];
        int i = 0;
        for (final String type : docTypes) {
            dts[i++] = new DERPrintableString(type);
        }
        vec.add(new DERSet(dts)); // the DERSet constructor performs the DER normalization (i.e., it sorts the set)
        
        ASN1Object gn = new DERSequence(vec);
        if(log.isTraceEnabled()) {
            log.trace("Constructed DocumentTypeList: "+ASN1Dump.dumpAsString(gn, true));
        }
        
        return gn;
    }   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy