Package org.bouncycastle.asn1.x509
Class Extensions
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.x509.Extensions
-
- All Implemented Interfaces:
ASN1Encodable,Encodable
public class Extensions extends ASN1Object
Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension Extension ::= SEQUENCE { extnId EXTENSION.&id ({ExtensionSet}), critical BOOLEAN DEFAULT FALSE, extnValue OCTET STRING }
-
-
Constructor Summary
Constructors Constructor Description Extensions(Extension extension)Base ConstructorExtensions(Extension[] extensions)Base Constructor
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequivalent(Extensions other)ASN1ObjectIdentifier[]getCriticalExtensionOIDs()ExtensiongetExtension(ASN1ObjectIdentifier oid)return the extension represented by the object identifier passed in.static ExtensiongetExtension(Extensions extensions, ASN1ObjectIdentifier oid)ASN1ObjectIdentifier[]getExtensionOIDs()ASN1EncodablegetExtensionParsedValue(ASN1ObjectIdentifier oid)return the parsed value of the extension represented by the object identifier passed in.static ASN1EncodablegetExtensionParsedValue(Extensions extensions, ASN1ObjectIdentifier oid)ASN1OctetStringgetExtensionValue(ASN1ObjectIdentifier oid)return the value of the extension represented by the object identifier passed in.static ASN1OctetStringgetExtensionValue(Extensions extensions, ASN1ObjectIdentifier oid)static ExtensionsgetInstance(java.lang.Object obj)static ExtensionsgetInstance(ASN1TaggedObject obj, boolean explicit)ASN1ObjectIdentifier[]getNonCriticalExtensionOIDs()booleanhasAnyCriticalExtensions()java.util.Enumerationoids()return an Enumeration of the extension field's object ids.static java.util.ListreviewStructure(ASN1Sequence seq)Re-run the parse of a candidate Extensions SEQUENCE collecting every problem the strictgetInstance(...)path would have thrown (e.g. repeated extensions), instead of stopping at the first.ASN1PrimitivetoASN1Primitive()Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension Extension ::= SEQUENCE { extnId EXTENSION.&id ({ExtensionSet}), critical BOOLEAN DEFAULT FALSE, extnValue OCTET STRING }-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
-
-
-
Method Detail
-
getExtension
public static Extension getExtension(Extensions extensions, ASN1ObjectIdentifier oid)
-
getExtensionParsedValue
public static ASN1Encodable getExtensionParsedValue(Extensions extensions, ASN1ObjectIdentifier oid)
-
getExtensionValue
public static ASN1OctetString getExtensionValue(Extensions extensions, ASN1ObjectIdentifier oid)
-
getInstance
public static Extensions getInstance(ASN1TaggedObject obj, boolean explicit)
-
getInstance
public static Extensions getInstance(java.lang.Object obj)
-
reviewStructure
public static java.util.List reviewStructure(ASN1Sequence seq)
Re-run the parse of a candidate Extensions SEQUENCE collecting every problem the strictgetInstance(...)path would have thrown (e.g. repeated extensions), instead of stopping at the first. The strict path and this share one parse method (seeparse(org.bouncycastle.asn1.ASN1Sequence, java.util.List)); only the error sink differs. Intended for diagnostic/reporting tooling (github #1508); it does not relax the repeated-extension rule (the "org.bouncycastle.x509.ignore_repeated_extensions" property still governs whether a repeat is a problem at all).- Parameters:
seq- the candidate Extensions SEQUENCE.- Returns:
- the exceptions the strict path would have thrown, one per problem, in parse order (empty if none).
-
oids
public java.util.Enumeration oids()
return an Enumeration of the extension field's object ids.
-
getExtension
public Extension getExtension(ASN1ObjectIdentifier oid)
return the extension represented by the object identifier passed in.- Returns:
- the extension if it's present, null otherwise.
-
getExtensionParsedValue
public ASN1Encodable getExtensionParsedValue(ASN1ObjectIdentifier oid)
return the parsed value of the extension represented by the object identifier passed in.- Returns:
- the parsed value of the extension if it's present, null otherwise.
-
getExtensionValue
public ASN1OctetString getExtensionValue(ASN1ObjectIdentifier oid)
return the value of the extension represented by the object identifier passed in.- Returns:
- the value of the extension if it's present, null otherwise.
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension Extension ::= SEQUENCE { extnId EXTENSION.&id ({ExtensionSet}), critical BOOLEAN DEFAULT FALSE, extnValue OCTET STRING }- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object- Returns:
- a primitive representation of this object.
-
equivalent
public boolean equivalent(Extensions other)
-
getExtensionOIDs
public ASN1ObjectIdentifier[] getExtensionOIDs()
-
getNonCriticalExtensionOIDs
public ASN1ObjectIdentifier[] getNonCriticalExtensionOIDs()
-
getCriticalExtensionOIDs
public ASN1ObjectIdentifier[] getCriticalExtensionOIDs()
-
hasAnyCriticalExtensions
public boolean hasAnyCriticalExtensions()
-
-