Example usage for org.bouncycastle.jce.provider RFC3280CertPathUtilities processCRLH

List of usage examples for org.bouncycastle.jce.provider RFC3280CertPathUtilities processCRLH

Introduction

In this page you can find the example usage for org.bouncycastle.jce.provider RFC3280CertPathUtilities processCRLH.

Prototype

protected static X509CRL processCRLH(Set deltacrls, PublicKey key) throws AnnotatedException 

Source Link

Usage

From source file:eu.emi.security.authn.x509.helpers.pkipath.bc.RFC3280CertPathUtilitiesHelper.java

License:Open Source License

protected static X509CRL processCRLH2(Set<?> deltacrls, PublicKey key) throws SimpleValidationErrorException {
    try {/*  w w  w. j  ava  2 s. co  m*/
        return RFC3280CertPathUtilities.processCRLH(deltacrls, key);
    } catch (AnnotatedException e) {
        throw new SimpleValidationErrorException(ValidationErrorCode.crlVerifyFailed, e);
    }
}