org.bouncycastle.cert.path.validations.ValidationUtils Maven / Gradle / Ivy
package org.bouncycastle.cert.path.validations;
import org.bouncycastle.cert.X509CertificateHolder;
class ValidationUtils
{
static boolean isSelfIssued(X509CertificateHolder cert)
{
return cert.getSubject().equals(cert.getIssuer());
}
}