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

com.fitbur.bouncycastle.cert.path.validations.ValidationUtils Maven / Gradle / Ivy

package com.fitbur.bouncycastle.cert.path.validations;

import com.fitbur.bouncycastle.cert.X509CertificateHolder;

class ValidationUtils
{
    static boolean isSelfIssued(X509CertificateHolder cert)
    {
        return cert.getSubject().equals(cert.getIssuer());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy