Class OtherRevocationInfoFormat
-
- All Implemented Interfaces:
-
io.anyline.nfc.bouncycastle.asn1.ASN1Encodable
,io.anyline.nfc.bouncycastle.util.Encodable
public class OtherRevocationInfoFormat extends ASN1Object
RFC 5652: OtherRevocationInfoFormat object.
OtherRevocationInfoFormat ::= SEQUENCE { otherRevInfoFormat OBJECT IDENTIFIER, otherRevInfo ANY DEFINED BY otherRevInfoFormat }
-
-
Constructor Summary
Constructors Constructor Description OtherRevocationInfoFormat(ASN1ObjectIdentifier otherRevInfoFormat, ASN1Encodable otherRevInfo)
-
Method Summary
Modifier and Type Method Description static OtherRevocationInfoFormat
getInstance(ASN1TaggedObject obj, boolean explicit)
Return a OtherRevocationInfoFormat object from a tagged object. static OtherRevocationInfoFormat
getInstance(Object obj)
Return a OtherRevocationInfoFormat object from the given object. ASN1ObjectIdentifier
getInfoFormat()
ASN1Encodable
getInfo()
ASN1Primitive
toASN1Primitive()
Produce an object suitable for an ASN1OutputStream. -
-
Constructor Detail
-
OtherRevocationInfoFormat
OtherRevocationInfoFormat(ASN1ObjectIdentifier otherRevInfoFormat, ASN1Encodable otherRevInfo)
-
-
Method Detail
-
getInstance
static OtherRevocationInfoFormat getInstance(ASN1TaggedObject obj, boolean explicit)
Return a OtherRevocationInfoFormat object from a tagged object.
- Parameters:
obj
- the tagged object holding the object we want.explicit
- true if the object is meant to be explicitly tagged false otherwise.
-
getInstance
static OtherRevocationInfoFormat getInstance(Object obj)
Return a OtherRevocationInfoFormat object from the given object.
Accepted inputs:
- null → null
- OtherRevocationInfoFormat object
- ASN1Sequence input formats with OtherRevocationInfoFormat structure inside
- Parameters:
obj
- the object we want converted.
-
getInfoFormat
ASN1ObjectIdentifier getInfoFormat()
-
getInfo
ASN1Encodable getInfo()
-
toASN1Primitive
ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.
-
-
-
-