java.security.cert
public interface X509Extension
Since: 1.2
Method Summary | |
---|---|
Set<String> | getCriticalExtensionOIDs()
Returns a set of the CRITICAL extension OIDs from the
certificate/CRL that the object implementing this interface
manages. |
byte[] | getExtensionValue(String oid)
Returns the DER encoded OCTET string for the specified
extension value identified by a OID. |
Set<String> | getNonCriticalExtensionOIDs()
Returns a set of the NON-CRITICAL extension OIDs from the
certificate/CRL that the object implementing this interface
manages. |
boolean | hasUnsupportedCriticalExtension()
Returns true if the certificate contains a critical extension
that is not supported. |
Returns: A Set containing the OIDs. If there are no CRITICAL extensions or extensions at all this returns null.
Returns: A Set containing the OIDs. If there are no NON-CRITICAL extensions or extensions at all this returns null.
Returns: true if has unsupported extension, false otherwise