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

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

import org.spongycastle.cert.X509CertificateHolder;

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