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

eu.europa.esig.dss.x509.CertificateToken Maven / Gradle / Ivy

There is a newer version: 6.0.d4j.2
Show newest version
/**
 * 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.x509;

import java.math.BigInteger;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
import java.security.Principal;
import java.security.PublicKey;
import java.security.SignatureException;
import java.security.cert.CertificateEncodingException;
import java.security.cert.CertificateException;
import java.security.cert.CertificateExpiredException;
import java.security.cert.CertificateNotYetValidException;
import java.security.cert.X509Certificate;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;

import javax.security.auth.x500.X500Principal;
import javax.xml.bind.DatatypeConverter;

import eu.europa.esig.dss.DSSException;
import eu.europa.esig.dss.DigestAlgorithm;
import eu.europa.esig.dss.EncryptionAlgorithm;
import eu.europa.esig.dss.Normalizer;
import eu.europa.esig.dss.SignatureAlgorithm;
import eu.europa.esig.dss.tsl.KeyUsageBit;
import eu.europa.esig.dss.tsl.ServiceInfo;

/**
 * Whenever the signature validation process encounters an {@link java.security.cert.X509Certificate} a certificateToken is created.
* This class encapsulates some frequently used information: a certificate comes from a certain context (Trusted List, * CertStore, Signature), has revocation data... To expedite the processing of such information, they are kept in cache. */ @SuppressWarnings("serial") public class CertificateToken extends Token { private String dssId; /** * Encapsulated X509 certificate. */ private X509Certificate x509Certificate; /** * This array contains the different sources for this certificate. */ private Set sources = new HashSet(); /** * If the certificate is part of the trusted list then the the serviceInfo represents the associated trusted service * provider service. Same certificate can be a part of multiple services. */ private Set associatedTSPS = new HashSet(); /** * The default algorithm used to compute the digest value of this certificate */ private DigestAlgorithm digestAlgorithm = DigestAlgorithm.SHA1; private EncryptionAlgorithm encryptionAlgorithm; /** * OCSP or CRL revocation data for this token. */ private RevocationToken revocationToken; /** * Indicates if the certificate is self-signed. This attribute stays null till the first call to {@link #isSelfSigned()} function. */ private Boolean selfSigned; /** * Extra information collected during the validation process. */ protected CertificateTokenValidationExtraInfo extraInfo; /** * Normalized X500Principal (BMPString, TeletextString...) */ private X500Principal subjectX500PrincipalNormalized = null; /** * In the case of the XML signature this is the Id associated with the certificate if any. */ private String xmlId; /** * The key usage bits used in the certificate */ private Set keyUsageBits; /** * This method returns an instance of {@link eu.europa.esig.dss.x509.CertificateToken}. * * @param cert * X509Certificate * @return */ static CertificateToken newInstance(X509Certificate cert) { return new CertificateToken(cert); } /** * Creates a CertificateToken wrapping the provided X509Certificate. * * @param x509Certificate * X509Certificate */ public CertificateToken(X509Certificate x509Certificate) { if (x509Certificate == null) { throw new NullPointerException("X509 certificate is missing"); } this.x509Certificate = x509Certificate; this.issuerX500Principal = Normalizer.getNormalizedX500Principal(x509Certificate.getIssuerX500Principal()); // The Algorithm OID is used and not the name {@code x509Certificate.getSigAlgName()} this.signatureAlgorithm = SignatureAlgorithm.forOID(x509Certificate.getSigAlgOID()); this.digestAlgorithm = signatureAlgorithm.getDigestAlgorithm(); this.encryptionAlgorithm = signatureAlgorithm.getEncryptionAlgorithm(); super.extraInfo = this.extraInfo = new CertificateTokenValidationExtraInfo(); } /** * This method adds the source type of the certificate (what is its origin). Each source is present only once. * * @param certSourceType */ public void addSourceType(final CertificateSourceType certSourceType) { if (certSourceType != null) { sources.add(certSourceType); } } /** * This method adds the associated trusted service information. * * @param serviceInfo */ public void addServiceInfo(final ServiceInfo serviceInfo) { if (serviceInfo != null) { associatedTSPS.add(serviceInfo); } } /** * Returns a string representation of the unique DSS certificate token identifier. */ public String getDSSIdAsString() { if (dssId == null) { dssId = getDSSId().asXmlId(); } return dssId; } @Override public String getAbbreviation() { return getDSSIdAsString(); } /** * @param revocationToken * This is the reference to the CertificateStatus. The object type is used because of the organisation * of module. */ public void setRevocationToken(RevocationToken revocationToken) { this.revocationToken = revocationToken; } /** * Returns the certificate revocation revocationToken object. */ public RevocationToken getRevocationToken() { return revocationToken; } /** * Returns the public key associated with the certificate.
* To get the encryption algorithm used with this public key call getAlgorithm() method.
* RFC 2459:
* 4.1.2.7 Subject Public Key Info * This field is used to carry the public key and identify the algorithm with which the key is used. The algorithm is * identified using the AlgorithmIdentifier structure specified in section 4.1.1.2. The object identifiers for the * supported algorithms and the methods for encoding the public key materials (public key and parameters) are * specified in section 7.3. * * @return */ public PublicKey getPublicKey() { return x509Certificate.getPublicKey(); } /** * Returns . * * @return */ public Date getNotAfter() { return x509Certificate.getNotAfter(); } /** * Returns . * * @return */ public Date getNotBefore() { return x509Certificate.getNotBefore(); } /** * Checks if the certificate is expired on the given date. * * @param date * @return */ public boolean isExpiredOn(final Date date) { if ((x509Certificate == null) || (date == null)) { return true; } return x509Certificate.getNotAfter().before(date); } /** * Checks if the given date is in the validity period of the certificate. * * @param date * @return */ public boolean isValidOn(final Date date) { if ((x509Certificate == null) || (date == null)) { return false; } try { x509Certificate.checkValidity(date); return true; } catch (CertificateExpiredException e) { return false; } catch (CertificateNotYetValidException e) { return false; } } /** * This method indicates if the encapsulated certificate is revoked. * * @return null if the revocation data cannot be checked, or true or false */ public Boolean isRevoked() { if (isTrusted()) { return false; } if (revocationToken == null) { return null; } Boolean status = revocationToken.getStatus(); if (status == null) { return null; } status = !status; return status; } /** * Checks if the certificate is provided by the trusted source. * * @return */ @Override public boolean isTrusted() { return sources.contains(CertificateSourceType.TRUSTED_LIST) || sources.contains(CertificateSourceType.TRUSTED_STORE); } /** * Checks if the certificate is self-signed. * * @return */ @Override public boolean isSelfSigned() { if (selfSigned == null) { final String n1 = x509Certificate.getSubjectX500Principal().getName(X500Principal.CANONICAL); final String n2 = x509Certificate.getIssuerX500Principal().getName(X500Principal.CANONICAL); selfSigned = n1.equals(n2); } return selfSigned; } /** * Gets the enclosed X509 Certificate. * * @return */ public X509Certificate getCertificate() { return x509Certificate; } /** * Returns the encoded form of this certificate. X.509 certificates would be encoded as ASN.1 DER. * * @return the encoded form of this certificate */ @Override public byte[] getEncoded() { try { return x509Certificate.getEncoded(); } catch (CertificateEncodingException e) { throw new DSSException(e); } } /** * Gets information about the context in which this certificate token was created (TRUSTED_LIST, TRUSTED_STORE, ...). * This method does not guarantee that the token is trusted or not. * * @return */ public Set getSources() { return sources; } /** * Gets information about the trusted context of the certificate. See {@link eu.europa.esig.dss.tsl.ServiceInfo} for more information. * * @return */ public Set getAssociatedTSPS() { if (isTrusted()) { return associatedTSPS; } return null; } /** * Gets the serialNumber value from the encapsulated certificate. The serial number is an integer assigned by the * certification authority to each certificate. It must be unique for each certificate issued by a given CA. * * @return */ public BigInteger getSerialNumber() { return x509Certificate.getSerialNumber(); } /** * Returns the subject (subject distinguished name) value from the certificate as an X500Principal. If the subject * value is empty, then the getName() method of the returned X500Principal object returns an empty string (""). * * @return */ public X500Principal getSubjectX500Principal() { if (subjectX500PrincipalNormalized == null) { subjectX500PrincipalNormalized = Normalizer.getNormalizedX500Principal(x509Certificate.getSubjectX500Principal()); ; } return subjectX500PrincipalNormalized; } @Override public boolean isSignedBy(final CertificateToken issuerToken) { signatureValid = false; signatureInvalidityReason = ""; try { final PublicKey publicKey = issuerToken.getCertificate().getPublicKey(); x509Certificate.verify(publicKey); signatureValid = true; if (!isSelfSigned()) { this.issuerToken = issuerToken; } } catch (InvalidKeyException e) { signatureInvalidityReason = "InvalidKeyException - on incorrect key."; } catch (CertificateException e) { signatureInvalidityReason = "CertificateException - on encoding errors."; } catch (NoSuchAlgorithmException e) { signatureInvalidityReason = "NoSuchAlgorithmException - on unsupported signature algorithms."; } catch (SignatureException e) { signatureInvalidityReason = "SignatureException - on signature errors."; } catch (NoSuchProviderException e) { // if there's no default provider. throw new DSSException(e); } return signatureValid; } /** * Returns the object managing the validation extra info. * * @return */ @Override public CertificateTokenValidationExtraInfo extraInfo() { return extraInfo; } public DigestAlgorithm getDigestAlgorithm() { return digestAlgorithm; } public EncryptionAlgorithm getEncryptionAlgorithm() { return encryptionAlgorithm; } /** * Returns the trust anchor associated with the certificate. If it is the self-signed certificate then {@code this} is returned. * * @return */ public CertificateToken getTrustAnchor() { if (isSelfSigned() && isTrusted()) { return this; } CertificateToken issuerCertToken = getIssuerToken(); while (issuerCertToken != null) { if (issuerCertToken.isTrusted()) { return issuerCertToken; } issuerCertToken = issuerCertToken.getIssuerToken(); } return null; } /** * This method checks if the certificate contains the given key usage bit. * * @param keyUsageBit * the keyUsageBit to be checked. * @return true if contains */ public boolean checkKeyUsage(final KeyUsageBit keyUsageBit) { Set keyUsageBits = getKeyUsageBits(); return keyUsageBits.contains(keyUsageBit); } @Override public String toString(String indentStr) { try { final StringBuffer out = new StringBuffer(); out.append(indentStr).append("CertificateToken[\n"); indentStr += "\t"; String issuerAsString = ""; if (issuerToken == null) { if (isSelfSigned()) { issuerAsString = "[SELF-SIGNED]"; } else { issuerAsString = getIssuerX500Principal().toString(); } } else { issuerAsString = issuerToken.getDSSIdAsString(); } String certSource = "UNKNOWN"; if (sources.size() > 0) { for (final CertificateSourceType source : sources) { final String name = source.name(); if ("UNKNOWN".equals(certSource)) { certSource = name; } else { certSource += "/" + name; } } } out.append(indentStr).append(getDSSIdAsString()).append("<--").append(issuerAsString).append(", source=").append(certSource); out.append(", serial=" + x509Certificate.getSerialNumber()).append('\n'); // Validity period out.append(indentStr).append("Validity period : ").append(x509Certificate.getNotBefore()).append(" - ").append(x509Certificate.getNotAfter()).append('\n'); out.append(indentStr).append("Subject name : ").append(getSubjectX500Principal()).append('\n'); out.append(indentStr).append("Issuer subject name: ").append(getIssuerX500Principal()).append('\n'); if (sources.contains(CertificateSourceType.TRUSTED_LIST)) { for (ServiceInfo si : associatedTSPS) { out.append(indentStr).append("Service Info :\n"); indentStr += "\t"; out.append(si.toString(indentStr)); indentStr = indentStr.substring(1); } } out.append(indentStr).append("Signature algorithm: ").append(signatureAlgorithm == null ? "?" : signatureAlgorithm).append('\n'); if (isTrusted()) { out.append(indentStr).append("Signature validity : Signature verification is not needed: trusted certificate\n"); } else { if (signatureValid) { out.append(indentStr).append("Signature validity : VALID").append('\n'); } else { if (!signatureInvalidityReason.isEmpty()) { out.append(indentStr).append("Signature validity : INVALID").append(" - ").append(signatureInvalidityReason).append('\n'); } } } if (revocationToken != null) { out.append(indentStr).append("Revocation data[\n"); indentStr += "\t"; final CertificateToken revocationTokenIssuerToken = revocationToken.getIssuerToken(); out.append(indentStr).append("Status: ").append(revocationToken.getStatus()).append(" / ").append(revocationToken.getIssuingTime()) .append(" / issuer's certificate ").append(revocationTokenIssuerToken != null ? revocationTokenIssuerToken.getDSSIdAsString() : "null").append('\n'); indentStr = indentStr.substring(1); out.append(indentStr).append("]\n"); } else { if (isSelfSigned()) { out.append(indentStr).append("Verification of revocation data is not necessary: self-signed certificate.\n"); } else if (isTrusted()) { out.append(indentStr).append("Verification of revocation data is not necessary: trusted certificate.\n"); } else { out.append(indentStr).append("There is no revocation data available!\n"); } } if (issuerToken != null) { out.append(indentStr).append("Issuer certificate[\n"); indentStr += "\t"; if (issuerToken.isSelfSigned()) { out.append(indentStr).append(issuerToken.getDSSIdAsString()).append(" SELF-SIGNED"); } else { out.append(issuerToken.toString(indentStr)); } out.append('\n'); indentStr = indentStr.substring(1); out.append(indentStr).append("]\n"); } for (String info : this.extraInfo.getValidationInfo()) { out.append(indentStr).append("- ").append(info).append('\n'); } indentStr = indentStr.substring(1); out.append(indentStr).append("]"); return out.toString(); } catch (Exception e) { return e.getMessage(); } } /** * @return return the id associated with the certificate in case of an XML signature, or null */ public String getXmlId() { return xmlId; } /** * Sets the Id associated with the certificate in case of an XML signature. * * @param xmlId * id */ public void setXmlId(final String xmlId) { this.xmlId = xmlId; } /** * This method returns a list {@code KeyUsageBit} representing the key usages of the certificate. * * @return {@code List} of {@code KeyUsageBit}s of different certificate's key usages */ public Set getKeyUsageBits() { if (keyUsageBits == null) { boolean[] keyUsageArray = x509Certificate.getKeyUsage(); keyUsageBits = new HashSet(); if (keyUsageArray != null) { for (KeyUsageBit keyUsageBit : KeyUsageBit.values()) { if (keyUsageArray[keyUsageBit.getIndex()]) { keyUsageBits.add(keyUsageBit); } } } } return keyUsageBits; } public byte[] getSignature() { return x509Certificate.getSignature(); } public Principal getIssuerDN() { return x509Certificate.getIssuerDN(); } public Principal getSubjectDN() { return x509Certificate.getSubjectDN(); } private String extractCNName(X500Principal principal) { String name = principal.getName(); int index = name.indexOf("CN=") + 3; if (index == -1) { return name; } int stop = name.indexOf(",", index); if (stop == -1) { return name.substring(index); } else { return name.substring(index, stop); } } public String getSubjectShortName() { return extractCNName(getSubjectX500Principal()); } public String getBase64Encoded() { return DatatypeConverter.printBase64Binary(getEncoded()); } public String getReadableCertificate() { String readableCertificate = x509Certificate.getSubjectDN().getName(); final int dnStartIndex = readableCertificate.indexOf("CN=") + 3; if ((dnStartIndex > 0) && (readableCertificate.indexOf(",", dnStartIndex) > 0)) { readableCertificate = readableCertificate.substring(dnStartIndex, readableCertificate.indexOf(",", dnStartIndex)) + " (SN:" + getSerialNumber() + ")"; } return readableCertificate; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy