Bouncy Castle Cryptography Library 1.48

org.bouncycastle.asn1.cms
Class OriginatorIdentifierOrKey

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Object
      extended by org.bouncycastle.asn1.cms.OriginatorIdentifierOrKey
All Implemented Interfaces:
ASN1Choice, ASN1Encodable

public class OriginatorIdentifierOrKey
extends ASN1Object
implements ASN1Choice


Constructor Summary
OriginatorIdentifierOrKey(ASN1OctetString id)
          Deprecated. use version taking a SubjectKeyIdentifier
OriginatorIdentifierOrKey(ASN1Primitive id)
          Deprecated. use more specific version
OriginatorIdentifierOrKey(IssuerAndSerialNumber id)
           
OriginatorIdentifierOrKey(OriginatorPublicKey id)
           
OriginatorIdentifierOrKey(SubjectKeyIdentifier id)
           
 
Method Summary
 ASN1Encodable getId()
           
static OriginatorIdentifierOrKey getInstance(ASN1TaggedObject o, boolean explicit)
          return an OriginatorIdentifierOrKey object from a tagged object.
static OriginatorIdentifierOrKey getInstance(java.lang.Object o)
          return an OriginatorIdentifierOrKey object from the given object.
 IssuerAndSerialNumber getIssuerAndSerialNumber()
           
 OriginatorPublicKey getOriginatorKey()
           
 SubjectKeyIdentifier getSubjectKeyIdentifier()
           
 ASN1Primitive toASN1Primitive()
          Produce an object suitable for an ASN1OutputStream.
 
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OriginatorIdentifierOrKey

public OriginatorIdentifierOrKey(IssuerAndSerialNumber id)

OriginatorIdentifierOrKey

public OriginatorIdentifierOrKey(ASN1OctetString id)
Deprecated. use version taking a SubjectKeyIdentifier


OriginatorIdentifierOrKey

public OriginatorIdentifierOrKey(SubjectKeyIdentifier id)

OriginatorIdentifierOrKey

public OriginatorIdentifierOrKey(OriginatorPublicKey id)

OriginatorIdentifierOrKey

public OriginatorIdentifierOrKey(ASN1Primitive id)
Deprecated. use more specific version

Method Detail

getInstance

public static OriginatorIdentifierOrKey getInstance(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:
java.lang.IllegalArgumentException - if the object held by the tagged object cannot be converted.

getInstance

public static OriginatorIdentifierOrKey getInstance(java.lang.Object o)
return an OriginatorIdentifierOrKey object from the given object.

Parameters:
o - the object we want converted.
Throws:
java.lang.IllegalArgumentException - if the object cannot be converted.

getId

public ASN1Encodable getId()

getIssuerAndSerialNumber

public IssuerAndSerialNumber getIssuerAndSerialNumber()

getSubjectKeyIdentifier

public SubjectKeyIdentifier getSubjectKeyIdentifier()

getOriginatorKey

public OriginatorPublicKey getOriginatorKey()

toASN1Primitive

public ASN1Primitive toASN1Primitive()
Produce an object suitable for an ASN1OutputStream.
 OriginatorIdentifierOrKey ::= CHOICE {
     issuerAndSerialNumber IssuerAndSerialNumber,
     subjectKeyIdentifier [0] SubjectKeyIdentifier,
     originatorKey [1] OriginatorPublicKey 
 }

 SubjectKeyIdentifier ::= OCTET STRING
 

Specified by:
toASN1Primitive in interface ASN1Encodable
Specified by:
toASN1Primitive in class ASN1Object

Bouncy Castle Cryptography Library 1.48