be.cardon.asn1.x509.extensions
Class IssuerAltName

java.lang.Object
  extended by org.bouncycastle.asn1.ASN1Encodable
      extended by be.cardon.asn1.x509.GeneralNames
          extended by be.cardon.asn1.x509.extensions.IssuerAltName
All Implemented Interfaces:
org.bouncycastle.asn1.DEREncodable

public class IssuerAltName
extends GeneralNames

Extension IssuerAltName.

Documentation from RFC 3280:

As with 4.2.1.7 (see SubjectAltName), this extension is used to associate Internet style identities with the certificate issuer. Issuer alternative names MUST be encoded as in 4.2.1.7.

Where present, this extension SHOULD NOT be marked critical.

ASN.1 definitions:

   id-ce-issuerAltName OBJECT IDENTIFIER ::=  { id-ce 18 }

   IssuerAltName ::= GeneralNames
   

See Also:
SubjectAltName, GeneralNames

Field Summary
 
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable
BER, DER
 
Constructor Summary
IssuerAltName(org.bouncycastle.asn1.ASN1Sequence seq)
          Creates a new instance from a ASN1Sequence.
IssuerAltName(GeneralName name)
          Creates a new instance containing one GeneralName.
IssuerAltName(GeneralNames names)
          Creates a new instance containing the given GeneralNames.
 
Method Summary
 java.util.Vector<GeneralName> getGeneralNames()
          Returns the vector of GeneralName.
static IssuerAltName getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj, boolean explicit)
          Creates an new object from an existing ASN.1 tagged object.
static IssuerAltName getInstance(java.lang.Object obj)
          Returns a new instance from an ASN1Sequence, or a GeneralNames, or a IssuerAltName object.
 
Methods inherited from class be.cardon.asn1.x509.GeneralNames
getGeneralNameVector, toASN1Object
 
Methods inherited from class org.bouncycastle.asn1.ASN1Encodable
equals, getDEREncoded, getDERObject, getEncoded, getEncoded, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IssuerAltName

public IssuerAltName(GeneralName name)
Creates a new instance containing one GeneralName.

Parameters:
name - the name to be contained.

IssuerAltName

public IssuerAltName(GeneralNames names)
Creates a new instance containing the given GeneralNames.


IssuerAltName

public IssuerAltName(org.bouncycastle.asn1.ASN1Sequence seq)
Creates a new instance from a ASN1Sequence.

Method Detail

getInstance

public static IssuerAltName getInstance(java.lang.Object obj)
Returns a new instance from an ASN1Sequence, or a GeneralNames, or a IssuerAltName object.


getInstance

public static IssuerAltName getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj,
                                        boolean explicit)
Creates an new object from an existing ASN.1 tagged object.


getGeneralNames

public java.util.Vector<GeneralName> getGeneralNames()
Returns the vector of GeneralName.

This vector may be empty but is never null.

This function is an alias for GeneralNames.getGeneralNameVector().