org.snf4j.tls.engine.X509TrustManagerCertificateValidator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snf4j-tls Show documentation
Show all versions of snf4j-tls Show documentation
The SNF4J module for TLS protocol
The newest version!
/*
* -------------------------------- MIT License --------------------------------
*
* Copyright (c) 2023-2024 SNF4J contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* -----------------------------------------------------------------------------
*/
package org.snf4j.tls.engine;
import java.security.PublicKey;
import java.security.cert.CertificateException;
import java.security.cert.CertificateExpiredException;
import java.security.cert.CertificateNotYetValidException;
import java.security.cert.CertificateRevokedException;
import java.security.cert.X509Certificate;
import javax.net.ssl.X509TrustManager;
import org.snf4j.tls.Args;
import org.snf4j.tls.alert.Alert;
import org.snf4j.tls.alert.BadCertificateAlert;
import org.snf4j.tls.alert.CertificateExpiredAlert;
import org.snf4j.tls.alert.CertificateRevokedAlert;
import org.snf4j.tls.alert.UnsupportedCertificateAlert;
public class X509TrustManagerCertificateValidator implements ICertificateValidator {
private final static String UNKNOWN = "UNKNOWN";
private final X509TrustManager manager;
private final boolean ignoreAlgorithms;
public X509TrustManagerCertificateValidator(X509TrustManager manager) {
this(manager, false);
}
public X509TrustManagerCertificateValidator(X509TrustManager manager, boolean ignoreAlgorithms) {
Args.checkNull(manager, "manager");
this.manager = manager;
this.ignoreAlgorithms = ignoreAlgorithms;
}
@Override
public Alert validateCertificates(CertificateValidateCriteria criteria, X509Certificate[] certs) throws Alert {
try {
if (!ignoreAlgorithms && !criteria.allMatch(certs)) {
return new BadCertificateAlert("Certificate signed by unsupported signatures");
}
if (criteria.isServer()) {
manager.checkClientTrusted(certs, UNKNOWN);
}
else {
manager.checkServerTrusted(certs, UNKNOWN);
}
}
catch (CertificateExpiredException e) {
return new CertificateExpiredAlert("Certificate expired", e);
}
catch (CertificateNotYetValidException e) {
return new CertificateExpiredAlert("Certificate not yet valid", e);
}
catch (CertificateRevokedException e) {
return new CertificateRevokedAlert("Certificate revoked", e);
}
catch (CertificateException e) {
return new BadCertificateAlert("Bad certificate", e);
}
return null;
}
@Override
public Alert validateRawKey(CertificateValidateCriteria criteria, PublicKey key) throws Alert {
return new UnsupportedCertificateAlert("Unsupported raw key");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy