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

X509Extension.java « cert « jce « bouncycastle « org « jdk1.3 « main « src « prov - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9dd8346993c9ff3cd999c2c5885f6235071ba19e (plain)
1
2
3
4
5
6
7
8
9
10
11
12

package org.bouncycastle.jce.cert;

import java.util.Set;

public interface X509Extension 
{
    public abstract Set getCriticalExtensionOIDs();
    public abstract byte[] getExtensionValue(String oid);
    public abstract Set getNonCriticalExtensionOIDs();
    public abstract boolean hasUnsupportedCriticalExtension();
}