Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ValidationUtils.java « validations « path « cert « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2a587065f4917ba4e5d0baf0b8410c36c21e98a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.bouncycastle.cert.path.validations;

import org.bouncycastle.cert.X509CertificateHolder;

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