eu.europa.esig.dss.crl.ICRLUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-crl-parser Show documentation
Show all versions of dss-crl-parser Show documentation
DSS CRL Parser API contains an interface which allows to validate a CRL and extract revocation data.
/**
* 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.crl;
import eu.europa.esig.dss.model.x509.CertificateToken;
import java.io.IOException;
import java.math.BigInteger;
import java.security.cert.X509CRLEntry;
/**
* The interface for dealing with CRLs
*/
public interface ICRLUtils {
/**
* Takes binaries and returns DER encoded {@code CRLBinary}
*
* @param binaries byte array representing an encoded CRL
* @return DER encoded {@link CRLBinary}
*/
CRLBinary buildCRLBinary(final byte[] binaries);
/**
* This method verifies: the signature of the CRL, the key usage of its signing certificate and the coherence
* between the subject names of the CRL signing certificate and the issuer name of the certificate for which the
* verification of the revocation data is carried out. A dedicated object based on {@code CRLValidity} is created
* and accordingly updated.
*
* @param crlBinary
* (@code CRLBinary) to build the {@code CRLValidity} and verify token (cannot be null)
* @param issuerToken
* {@code CertificateToken} used to sign the {@code X509CRL} (cannot be null)
* @return {@code CRLValidity}
* @throws IOException
* if an IO error occurred
*/
CRLValidity buildCRLValidity(final CRLBinary crlBinary, final CertificateToken issuerToken) throws IOException;
/**
* This method verifies the revocation status for a given serial number
*
* @param crlValidity
* the CRL Validity
* @param serialNumber
* the certificate serial number to search
* @return the X509CRLEntry with the revocation date, the reason, or null if the serial number is not found
*/
X509CRLEntry getRevocationInfo(final CRLValidity crlValidity, final BigInteger serialNumber);
}