no.digipost.security.crl.RevocationChecker Maven / Gradle / Ivy
/**
* Copyright (C) Posten Norge AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package no.digipost.security.crl;
import no.digipost.security.DigipostSecurity;
import org.apache.http.ssl.TrustStrategy;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.security.cert.CRL;
import java.security.cert.CRLException;
import java.security.cert.CertificateException;
import java.security.cert.CertificateFactory;
import java.security.cert.X509Certificate;
import static java.lang.String.format;
/**
* Used for configuring a HTTP Client to check if the server's certificate is revoked.
* The check is performed against a static Certificate Revocation List (CRL) file.
*
* When configuring the {@link javax.net.ssl.SSLContext} for a {@link org.apache.http.client.HttpClient},
* the RevocationChecker is set up as follows:
*
* {@code
* HttpClientBuilder.create()
* .setSSLContext(SSLContexts.custom()
* .loadTrustMaterial(trustStore, new RevocationChecker(crlPath))
* ).build();
* }
*
*/
public class RevocationChecker implements TrustStrategy {
private final CRL crl;
public RevocationChecker(Path crlPath) {
CertificateFactory cf = DigipostSecurity.getX509CertificateFactory();
try (InputStream inputStream = Files.newInputStream(crlPath)) {
this.crl = cf.generateCRL(inputStream);
} catch (CRLException | IOException e) {
throw new RuntimeException(format("Could not load CRL from path '%s'.", crlPath));
}
}
@Override
public boolean isTrusted(X509Certificate[] chain, String authType) throws CertificateException {
for(X509Certificate certificate : chain) {
if (crl.isRevoked(certificate)) {
throw new CertificateException(format("Certificate with serial number %s is revoked: %s",
certificate.getSerialNumber().toString(16),
DigipostSecurity.describe(certificate))
);
}
}
return false;
}
}