public class GeneralName extends ASN1Object implements ASN1Choice
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 } Name ::= CHOICE { RDNSequence }
Modifier and Type | Field and Description |
---|---|
static int |
directoryName |
static int |
dNSName |
static int |
ediPartyName |
static int |
iPAddress |
private ASN1Encodable |
obj |
static int |
otherName |
static int |
registeredID |
static int |
rfc822Name |
private int |
tag |
static int |
uniformResourceIdentifier |
static int |
x400Address |
Constructor and Description |
---|
GeneralName(int tag,
ASN1Encodable name)
When the subjectAltName extension contains an Internet mail address,
the address MUST be included as an rfc822Name.
|
GeneralName(int tag,
String name)
Create a GeneralName for the given tag from the passed in String.
|
GeneralName(X500Name dirName) |
GeneralName(X509Name dirName)
Deprecated.
use X500Name constructor.
|
Modifier and Type | Method and Description |
---|---|
private void |
copyInts(int[] parsedIp,
byte[] addr,
int offSet) |
static GeneralName |
getInstance(ASN1TaggedObject tagObj,
boolean explicit) |
static GeneralName |
getInstance(Object obj) |
ASN1Encodable |
getName() |
int |
getTagNo() |
private void |
parseIPv4(String ip,
byte[] addr,
int offset) |
private void |
parseIPv4Mask(String mask,
byte[] addr,
int offset) |
private int[] |
parseIPv6(String ip) |
private int[] |
parseMask(String mask) |
ASN1Primitive |
toASN1Primitive()
Method providing a primitive representation of this object suitable for encoding.
|
private byte[] |
toGeneralNameEncoding(String ip) |
String |
toString() |
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
public static final int otherName
public static final int rfc822Name
public static final int dNSName
public static final int x400Address
public static final int directoryName
public static final int ediPartyName
public static final int uniformResourceIdentifier
public static final int iPAddress
public static final int registeredID
private ASN1Encodable obj
private int tag
public GeneralName(X509Name dirName)
dirName
- public GeneralName(X500Name dirName)
public GeneralName(int tag, ASN1Encodable name)
public GeneralName(int tag, String name)
This constructor can handle:
Note: A directory name can be encoded in different ways into a byte representation. Be aware of this if the byte representation is used for comparing results.
tag
- tag numbername
- string representation of nameIllegalArgumentException
- if the string encoding is not correct or * not supported.public static GeneralName getInstance(Object obj)
public static GeneralName getInstance(ASN1TaggedObject tagObj, boolean explicit)
public int getTagNo()
public ASN1Encodable getName()
private byte[] toGeneralNameEncoding(String ip)
private void parseIPv4Mask(String mask, byte[] addr, int offset)
private void copyInts(int[] parsedIp, byte[] addr, int offSet)
public ASN1Primitive toASN1Primitive()
ASN1Object
toASN1Primitive
in interface ASN1Encodable
toASN1Primitive
in class ASN1Object