xades4j.production.KeyInfoBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xades4j Show documentation
Show all versions of xades4j Show documentation
The XAdES4j library is an high-level, configurable and extensible Java implementation of XML Advanced
Electronic Signatures (XAdES 1.3.2 and 1.4.1). It enables producing, verifying and extending signatures in the
main XAdES forms: XAdES-BES, XAdES-EPES, XAdES-T and XAdES-C. Also, extended forms are supported through the
enrichment of an existing signature.
/*
* XAdES4j - A Java library for generation and verification of XAdES signatures.
* Copyright (C) 2011 Luis Goncalves.
*
* XAdES4j 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 3 of the License, or any later version.
*
* XAdES4j 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 XAdES4j. If not, see .
*/
package xades4j.production;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
import java.util.List;
import org.apache.xml.security.exceptions.XMLSecurityException;
import org.apache.xml.security.keys.content.X509Data;
import org.apache.xml.security.signature.XMLSignature;
import org.apache.xml.security.signature.XMLSignatureException;
import org.apache.xml.security.transforms.Transforms;
import xades4j.UnsupportedAlgorithmException;
import xades4j.algorithms.Algorithm;
import xades4j.providers.AlgorithmsProviderEx;
import xades4j.providers.X500NameStyleProvider;
import xades4j.utils.CanonicalizerUtils;
import xades4j.utils.TransformUtils;
import xades4j.xml.marshalling.algorithms.AlgorithmsParametersMarshallingProvider;
/**
* Helper class that creates the {@code ds:KeyInfo} element accordingly to some
* signature options. The signing certificate validity and key usages are
* validated.
*
* @author Luís
*/
class KeyInfoBuilder
{
private final BasicSignatureOptions basicSignatureOptions;
private final AlgorithmsProviderEx algorithmsProvider;
private final AlgorithmsParametersMarshallingProvider algorithmsParametersMarshaller;
private final X500NameStyleProvider x500NameStyleProvider;
KeyInfoBuilder(
BasicSignatureOptions basicSignatureOptions,
AlgorithmsProviderEx algorithmsProvider,
AlgorithmsParametersMarshallingProvider algorithmsParametersMarshaller,
X500NameStyleProvider x500NameStyleProvider)
{
this.basicSignatureOptions = basicSignatureOptions;
this.algorithmsProvider = algorithmsProvider;
this.algorithmsParametersMarshaller = algorithmsParametersMarshaller;
this.x500NameStyleProvider = x500NameStyleProvider;
}
void buildKeyInfo(
List signingCertificateChain,
XMLSignature xmlSig) throws KeyingDataException, UnsupportedAlgorithmException
{
X509Certificate signingCertificate = signingCertificateChain.get(0);
// Check key usage.
// - KeyUsage[0] = digitalSignature
// - KeyUsage[1] = nonRepudiation
boolean[] keyUsage = signingCertificate.getKeyUsage();
if (keyUsage != null && !keyUsage[0] && !keyUsage[1])
{
throw new SigningCertKeyUsageException(signingCertificate);
}
try
{
signingCertificate.checkValidity();
} catch (CertificateException ce)
{
// CertificateExpiredException or CertificateNotYetValidException
throw new SigningCertValidityException(signingCertificate);
}
if (this.basicSignatureOptions.includeSigningCertificate() != SigningCertificateMode.NONE
|| this.basicSignatureOptions.includeIssuerSerial()
|| this.basicSignatureOptions.includeSubjectName())
{
X509Data x509Data = new X509Data(xmlSig.getDocument());
xmlSig.getKeyInfo().add(x509Data);
if (this.basicSignatureOptions.includeSigningCertificate() != SigningCertificateMode.NONE)
{
int loopLimit = this.basicSignatureOptions.includeSigningCertificate() == SigningCertificateMode.SIGNING_CERTIFICATE
? 1
: signingCertificateChain.size();
for(int i = 0; i < loopLimit; ++i)
{
try
{
x509Data.addCertificate(signingCertificateChain.get(i));
}
catch (XMLSecurityException ex)
{
throw new KeyingDataException(ex.getMessage(), ex);
}
}
}
if (this.basicSignatureOptions.includeIssuerSerial())
{
x509Data.addIssuerSerial(this.x500NameStyleProvider.toString(signingCertificate.getIssuerX500Principal()), signingCertificate.getSerialNumber());
}
if (this.basicSignatureOptions.includeSubjectName())
{
x509Data.addSubjectName(this.x500NameStyleProvider.toString(signingCertificate.getSubjectX500Principal()));
}
}
if (this.basicSignatureOptions.includePublicKey())
{
xmlSig.addKeyInfo(signingCertificate.getPublicKey());
}
if (this.basicSignatureOptions.signKeyInfo())
{
try
{
String keyInfoId = xmlSig.getId() + "-keyinfo";
xmlSig.getKeyInfo().setId(keyInfoId);
// Use same canonicalization URI as specified in the ds:CanonicalizationMethod for Signature.
Algorithm canonAlg = this.algorithmsProvider.getCanonicalizationAlgorithmForSignature();
CanonicalizerUtils.checkC14NAlgorithm(canonAlg);
Transforms transforms = TransformUtils.createTransforms(canonAlg, this.algorithmsParametersMarshaller, xmlSig.getDocument());
xmlSig.addDocument(
'#' + keyInfoId,
transforms,
this.algorithmsProvider.getDigestAlgorithmForDataObjsReferences());
}
catch (XMLSignatureException ex)
{
throw new UnsupportedAlgorithmException(
"Digest algorithm not supported in the XML Signature provider",
this.algorithmsProvider.getDigestAlgorithmForDataObjsReferences(), ex);
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy