es.gob.afirma.cert.certvalidation.CertificateVerificable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-crypto-validation Show documentation
Show all versions of afirma-crypto-validation Show documentation
Modulo para la validacion del core de firma de firmas ASN.1 y XML
/* Copyright (C) 2011 [Gobierno de Espana]
* This file is part of "Cliente @Firma".
* "Cliente @Firma" is free software; you can redistribute it and/or modify it under the terms of:
* - the GNU General Public License as published by the Free Software Foundation;
* either version 2 of the License, or (at your option) any later version.
* - or The European Software License; either version 1.1 or (at your option) any later version.
* You may contact the copyright holder at: [email protected]
*/
package es.gob.afirma.cert.certvalidation;
import java.security.SignatureException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;
/** Interfaz para los validadores de certificado.
* @author Sergio Martínez Rico. */
public interface CertificateVerificable {
/** Define el certificado X.509v3.
* @param cert Certificado a definir. */
void setSubjectCert(final X509Certificate cert);
/** Define el emisor del certificado X.509v3.
* @param cert Certificado del emimsor a definir. */
void setIssuerCert(final X509Certificate cert);
/** Define las propiedades del certificado X.509v3.
* @param properties Propiedades a definir. */
void setValidationProperties(String properties);
/** Valida el certificado X.509v3 que se ha proporcionado en el constructor.
* @return Resultado de la validación. */
ValidationResult validateCertificate();
/** Valida si el certificado X.509v3 que se ha proporcionado en el constructor está revocado.
* @param cert Certificado a validar.
* @return Resultado de la validación. */
abstract ValidationResult verifyRevocation(final X509Certificate cert);
/** Valida el emisor del certificado X.509v3.
* @param cert Certificado a validar.
* @throws CertificateException Si el certificado o la firma no son válidos.
* @throws SignatureException Fallo en la verificación del emisor. */
void verifyIssuer(final X509Certificate cert) throws CertificateException, SignatureException;
/** Valida un certificado X.509v3.
* @param cert Certificado a validar.
* @return Resultado de la validación. */
ValidationResult validateCertificate(final X509Certificate cert);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy