eu.europa.esig.dss.cades.validation.CMSDocumentValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-cades Show documentation
Show all versions of dss-cades Show documentation
DSS CAdES contains the code for the creation and validation of CAdES signatures.
/**
* DSS - Digital Signature Services
* Copyright (C) 2015 European Commission, provided under the CEF programme
*
* This file is part of the "DSS - Digital Signature Services" project.
*
* This library 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 (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package eu.europa.esig.dss.cades.validation;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.List;
import org.bouncycastle.cms.CMSException;
import org.bouncycastle.cms.CMSSignedData;
import org.bouncycastle.cms.SignerInformation;
import eu.europa.esig.dss.DSSASN1Utils;
import eu.europa.esig.dss.DSSDocument;
import eu.europa.esig.dss.DSSException;
import eu.europa.esig.dss.DSSUtils;
import eu.europa.esig.dss.utils.Utils;
import eu.europa.esig.dss.validation.AdvancedSignature;
import eu.europa.esig.dss.validation.SignedDocumentValidator;
/**
* Validation of CMS document
*
*/
public class CMSDocumentValidator extends SignedDocumentValidator {
protected CMSSignedData cmsSignedData;
/**
* This constructor is used with {@code TimeStampToken}.
*/
public CMSDocumentValidator() {
super(new CAdESSignatureScopeFinder());
}
/**
* The default constructor for {@code CMSDocumentValidator}.
*
* @param cmsSignedData
* pkcs7-signature(s)
*/
public CMSDocumentValidator(final CMSSignedData cmsSignedData) {
this();
this.cmsSignedData = cmsSignedData;
}
/**
* The default constructor for {@code CMSDocumentValidator}.
*
* @param document
* document to validate (with the signature(s))
* @throws DSSException
*/
public CMSDocumentValidator(final DSSDocument document) throws DSSException {
this();
this.document = document;
try (InputStream inputStream = document.openStream()) {
this.cmsSignedData = new CMSSignedData(inputStream);
} catch (IOException | CMSException e) {
throw new DSSException("Not a valid CAdES file", e);
}
}
@Override
public boolean isSupported(DSSDocument dssDocument) {
byte firstByte = DSSUtils.readFirstByte(dssDocument);
return DSSASN1Utils.isASN1SequenceTag(firstByte);
}
@Override
public List getSignatures() {
List signatures = new ArrayList();
if (cmsSignedData != null) {
for (final Object signerInformationObject : cmsSignedData.getSignerInfos().getSigners()) {
final SignerInformation signerInformation = (SignerInformation) signerInformationObject;
final CAdESSignature cadesSignature = new CAdESSignature(cmsSignedData, signerInformation, validationCertPool);
if (document != null) {
cadesSignature.setSignatureFilename(document.getName());
}
cadesSignature.setDetachedContents(detachedContents);
cadesSignature.setProvidedSigningCertificateToken(providedSigningCertificateToken);
signatures.add(cadesSignature);
}
}
return signatures;
}
@Override
public List getOriginalDocuments(final String signatureId) throws DSSException {
if (Utils.isStringBlank(signatureId)) {
throw new NullPointerException("signatureId");
}
List results = new ArrayList();
for (final Object signerInformationObject : cmsSignedData.getSignerInfos().getSigners()) {
final SignerInformation signerInformation = (SignerInformation) signerInformationObject;
final CAdESSignature cadesSignature = new CAdESSignature(cmsSignedData, signerInformation, validationCertPool);
cadesSignature.setSignatureFilename(document.getName());
cadesSignature.setDetachedContents(detachedContents);
cadesSignature.setProvidedSigningCertificateToken(providedSigningCertificateToken);
if (Utils.areStringsEqual(cadesSignature.getId(), signatureId)) {
results.add(cadesSignature.getOriginalDocument());
}
}
return results;
}
}