/** * 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.cookbook.example.sign; import java.io.IOException; import org.junit.Test; import eu.europa.esig.dss.BLevelParameters; import eu.europa.esig.dss.DSSDocument; import eu.europa.esig.dss.DSSUtils; import eu.europa.esig.dss.DigestAlgorithm; import eu.europa.esig.dss.Policy; import eu.europa.esig.dss.SignatureLevel; import eu.europa.esig.dss.SignaturePackaging; import eu.europa.esig.dss.SignatureValue; import eu.europa.esig.dss.ToBeSigned; import eu.europa.esig.dss.cookbook.example.CookbookTools; import eu.europa.esig.dss.validation.CommonCertificateVerifier; import eu.europa.esig.dss.xades.XAdESSignatureParameters; import eu.europa.esig.dss.xades.signature.XAdESService; /** * How to set explicit policy. */ public class SignXmlXadesBExplicitPolicyTest extends CookbookTools { @Test public void testWithExplicitPolicy() throws IOException { prepareXmlDoc(); preparePKCS12TokenAndKey(); // tag::demo[] XAdESSignatureParameters parameters = new XAdESSignatureParameters(); parameters.setSignatureLevel(SignatureLevel.XAdES_BASELINE_B); parameters.setSignaturePackaging(SignaturePackaging.ENVELOPED); parameters.setDigestAlgorithm(DigestAlgorithm.SHA256); // We set the signing certificate parameters.setSigningCertificate(privateKey.getCertificate()); // We set the certificate chain parameters.setCertificateChain(privateKey.getCertificateChain()); BLevelParameters bLevelParameters = parameters.bLevel(); // Get and use the explicit policy String signaturePolicyId = "http://www.example.com/policy.txt"; DigestAlgorithm signaturePolicyHashAlgo = DigestAlgorithm.SHA256; String signaturePolicyDescription = "Policy text to digest"; byte[] signaturePolicyDescriptionBytes = signaturePolicyDescription.getBytes(); byte[] digestedBytes = DSSUtils.digest(signaturePolicyHashAlgo, signaturePolicyDescriptionBytes); Policy policy = new Policy(); policy.setId(signaturePolicyId); policy.setDigestAlgorithm(signaturePolicyHashAlgo); policy.setDigestValue(digestedBytes); bLevelParameters.setSignaturePolicy(policy); // Create common certificate verifier CommonCertificateVerifier commonCertificateVerifier = new CommonCertificateVerifier(); // Create xadesService for signature XAdESService service = new XAdESService(commonCertificateVerifier); // Get the SignedInfo segment that need to be signed. ToBeSigned dataToSign = service.getDataToSign(toSignDocument, parameters); // This function obtains the signature value for signed information using the // private key and specified algorithm DigestAlgorithm digestAlgorithm = parameters.getDigestAlgorithm(); SignatureValue signatureValue = signingToken.sign(dataToSign, digestAlgorithm, privateKey); // We invoke the xadesService to sign the document with the signature value obtained in // the previous step. DSSDocument signedDocument = service.signDocument(toSignDocument, parameters, signatureValue); // end::demo[] testFinalDocument(signedDocument); } }