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

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

Introduction

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

Prototype

protected static PublicKey processCRLG(X509CRL crl, Set keys) throws AnnotatedException 

Source Link

Usage

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

License:Open Source License

protected static PublicKey processCRLG2(X509CRL crl, Set<?> keys) throws SimpleValidationErrorException {
    try {/*from w w  w  . j a v a 2  s  .c  o m*/
        return RFC3280CertPathUtilities.processCRLG(crl, keys);
    } catch (AnnotatedException e) {
        throw new SimpleValidationErrorException(ValidationErrorCode.crlVerifyFailed, e);
    }
}