Package org.bouncycastle.asn1.cms
Class OriginatorIdentifierOrKey
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.asn1.cms.OriginatorIdentifierOrKey
- All Implemented Interfaces:
org.bouncycastle.asn1.ASN1Choice
,org.bouncycastle.asn1.ASN1Encodable
,org.bouncycastle.util.Encodable
public class OriginatorIdentifierOrKey
extends org.bouncycastle.asn1.ASN1Object
implements org.bouncycastle.asn1.ASN1Choice
RFC 5652:
Content encryption key delivery mechanisms.
OriginatorIdentifierOrKey ::= CHOICE { issuerAndSerialNumber IssuerAndSerialNumber, subjectKeyIdentifier [0] SubjectKeyIdentifier, originatorKey [1] OriginatorPublicKey } SubjectKeyIdentifier ::= OCTET STRING
-
Constructor Summary
ConstructorDescriptionOriginatorIdentifierOrKey
(org.bouncycastle.asn1.ASN1OctetString id) Deprecated.use version taking a SubjectKeyIdentifierOriginatorIdentifierOrKey
(org.bouncycastle.asn1.ASN1Primitive id) Deprecated.use more specific versionOriginatorIdentifierOrKey
(org.bouncycastle.asn1.x509.SubjectKeyIdentifier id) -
Method Summary
Modifier and TypeMethodDescriptionorg.bouncycastle.asn1.ASN1Encodable
getId()
static OriginatorIdentifierOrKey
Return an OriginatorIdentifierOrKey object from the given object.static OriginatorIdentifierOrKey
getInstance
(org.bouncycastle.asn1.ASN1TaggedObject o, boolean explicit) Return an OriginatorIdentifierOrKey object from a tagged object.org.bouncycastle.asn1.x509.SubjectKeyIdentifier
org.bouncycastle.asn1.ASN1Primitive
Produce an object suitable for an ASN1OutputStream.Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
Constructor Details
-
OriginatorIdentifierOrKey
-
OriginatorIdentifierOrKey
public OriginatorIdentifierOrKey(org.bouncycastle.asn1.ASN1OctetString id) Deprecated.use version taking a SubjectKeyIdentifier -
OriginatorIdentifierOrKey
public OriginatorIdentifierOrKey(org.bouncycastle.asn1.x509.SubjectKeyIdentifier id) -
OriginatorIdentifierOrKey
-
OriginatorIdentifierOrKey
public OriginatorIdentifierOrKey(org.bouncycastle.asn1.ASN1Primitive id) Deprecated.use more specific version
-
-
Method Details
-
getInstance
public static OriginatorIdentifierOrKey getInstance(org.bouncycastle.asn1.ASN1TaggedObject o, boolean explicit) Return an OriginatorIdentifierOrKey object from a tagged object.- Parameters:
o
- the tagged object holding the object we want.explicit
- true if the object is meant to be explicitly tagged false otherwise.- Throws:
IllegalArgumentException
- if the object held by the tagged object cannot be converted.
-
getInstance
Return an OriginatorIdentifierOrKey object from the given object.Accepted inputs:
- null → null
-
OriginatorIdentifierOrKey
object -
IssuerAndSerialNumber
object -
ASN1TaggedObject
input formats with IssuerAndSerialNumber structure inside
- Parameters:
o
- the object we want converted.- Throws:
IllegalArgumentException
- if the object cannot be converted.
-
getId
public org.bouncycastle.asn1.ASN1Encodable getId() -
getIssuerAndSerialNumber
-
getSubjectKeyIdentifier
public org.bouncycastle.asn1.x509.SubjectKeyIdentifier getSubjectKeyIdentifier() -
getOriginatorKey
-
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
-