Package org.bouncycastle.asn1.cms
Class RecipientIdentifier
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.cms.RecipientIdentifier
-
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Choice
,org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class RecipientIdentifier extends org.bouncycastle.asn1.ASN1Object implements org.bouncycastle.asn1.ASN1Choice
RFC 5652: Content encryption key delivery mechanisms.RecipientIdentifier ::= CHOICE { issuerAndSerialNumber IssuerAndSerialNumber, subjectKeyIdentifier [0] SubjectKeyIdentifier } SubjectKeyIdentifier ::= OCTET STRING
-
-
Constructor Summary
Constructors Constructor Description RecipientIdentifier(org.bouncycastle.asn1.ASN1OctetString id)
RecipientIdentifier(org.bouncycastle.asn1.ASN1Primitive id)
RecipientIdentifier(IssuerAndSerialNumber id)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.bouncycastle.asn1.ASN1Encodable
getId()
static RecipientIdentifier
getInstance(java.lang.Object o)
Return a RecipientIdentifier object from the given object.boolean
isTagged()
org.bouncycastle.asn1.ASN1Primitive
toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.
-
-
-
Constructor Detail
-
RecipientIdentifier
public RecipientIdentifier(IssuerAndSerialNumber id)
-
RecipientIdentifier
public RecipientIdentifier(org.bouncycastle.asn1.ASN1OctetString id)
-
RecipientIdentifier
public RecipientIdentifier(org.bouncycastle.asn1.ASN1Primitive id)
-
-
Method Detail
-
getInstance
public static RecipientIdentifier getInstance(java.lang.Object o)
Return a RecipientIdentifier object from the given object.Accepted inputs:
- null → null
-
RecipientIdentifier
object -
IssuerAndSerialNumber
object -
ASN1OctetString
input formats (OctetString, byte[]) with value of KeyIdentifier in DER form -
ASN1Primitive
for RecipientIdentifier constructor
- Parameters:
o
- the object we want converted.- Throws:
java.lang.IllegalArgumentException
- if the object cannot be converted.
-
isTagged
public boolean isTagged()
-
getId
public org.bouncycastle.asn1.ASN1Encodable getId()
-
toASN1Primitive
public org.bouncycastle.asn1.ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.- Specified by:
toASN1Primitive
in interfaceorg.bouncycastle.asn1.ASN1Encodable
- Specified by:
toASN1Primitive
in classorg.bouncycastle.asn1.ASN1Object
-
-