be.cardon.asn1.x509
Class GeneralNames
java.lang.Object
org.bouncycastle.asn1.ASN1Encodable
be.cardon.asn1.x509.GeneralNames
- All Implemented Interfaces:
- org.bouncycastle.asn1.DEREncodable
- Direct Known Subclasses:
- IssuerAltName, SubjectAltName
public class GeneralNames
- extends org.bouncycastle.asn1.ASN1Encodable
GeneralNames
ASN.1 object.
The ASN.1 definition is given in the RFC 3280 :
GeneralNames ::= SEQUENCE SIZE (1..MAX) OF GeneralName
GeneralName ::= CHOICE {
otherName [0] OtherName,
rfc822Name [1] IA5String,
dNSName [2] IA5String,
x400Address [3] ORAddress,
directoryName [4] Name,
ediPartyName [5] EDIPartyName,
uniformResourceIdentifier [6] IA5String,
iPAddress [7] OCTET STRING,
registeredID [8] OBJECT IDENTIFIER }
OtherName ::= SEQUENCE {
type-id OBJECT IDENTIFIER,
value [0] EXPLICIT ANY DEFINED BY type-id }
EDIPartyName ::= SEQUENCE {
nameAssigner [0] DirectoryString OPTIONAL,
partyName [1] DirectoryString }
- See Also:
GeneralName
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable |
BER, DER |
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 |
GeneralNames
public GeneralNames(GeneralName name)
- Construct a GeneralNames object containing one GeneralName.
- Parameters:
name
- the name to be contained.
GeneralNames
public GeneralNames(java.util.Vector<GeneralName> generalNameVector)
GeneralNames
public GeneralNames(org.bouncycastle.asn1.ASN1Sequence seq)
getInstance
public static GeneralNames getInstance(java.lang.Object obj)
getInstance
public static GeneralNames getInstance(org.bouncycastle.asn1.ASN1TaggedObject obj,
boolean explicit)
getGeneralNameVector
public java.util.Vector<GeneralName> getGeneralNameVector()
toASN1Object
public org.bouncycastle.asn1.DERObject toASN1Object()
- Produce an object suitable for an ASN1OutputStream.
GeneralNames ::= SEQUENCE SIZE {1..MAX} OF GeneralName
- Specified by:
toASN1Object
in class org.bouncycastle.asn1.ASN1Encodable