All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jscep.client.verification.OptimisticCertificateVerifier Maven / Gradle / Ivy

There is a newer version: 2.5.6
Show newest version
package org.jscep.client.verification;

import java.security.cert.X509Certificate;

/**
 * This {@code CertificateVerifier} always returns {@code true}.
 * 

* This implementation should only be used if you have no need to verify the CA * certificate. This is not recommended. */ public final class OptimisticCertificateVerifier implements CertificateVerifier { /** * {@inheritDoc} */ @Override public boolean verify(final X509Certificate cert) { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy