Class Attributes
-
- All Implemented Interfaces:
-
io.anyline.nfc.bouncycastle.asn1.ASN1Encodable
,io.anyline.nfc.bouncycastle.util.Encodable
public class Attributes extends ASN1Object
RFC 5652 defines 5 "SET OF Attribute" entities with 5 different names. This is common implementation for them all:
SignedAttributes ::= SET SIZE (1..MAX) OF Attribute UnsignedAttributes ::= SET SIZE (1..MAX) OF Attribute UnprotectedAttributes ::= SET SIZE (1..MAX) OF Attribute AuthAttributes ::= SET SIZE (1..MAX) OF Attribute UnauthAttributes ::= SET SIZE (1..MAX) OF Attribute Attributes ::= SET SIZE(1..MAX) OF Attribute
-
-
Constructor Summary
Constructors Constructor Description Attributes(ASN1EncodableVector v)
-
Method Summary
Modifier and Type Method Description static Attributes
getInstance(Object obj)
Return an Attribute set object from the given object. static Attributes
getInstance(ASN1TaggedObject obj, boolean explicit)
Array<Attribute>
getAttributes()
ASN1Primitive
toASN1Primitive()
Produce an object suitable for an ASN1OutputStream. -
-
Constructor Detail
-
Attributes
Attributes(ASN1EncodableVector v)
-
-
Method Detail
-
getInstance
static Attributes getInstance(Object obj)
Return an Attribute set object from the given object.
Accepted inputs:
- null → null
- Attributes object
- ASN1Set input formats with Attributes structure inside
- Parameters:
obj
- the object we want converted.
-
getInstance
static Attributes getInstance(ASN1TaggedObject obj, boolean explicit)
-
getAttributes
Array<Attribute> getAttributes()
-
toASN1Primitive
ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.
-
-
-
-