|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.bouncycastle.asn1.ASN1Encodable
be.cardon.asn1.x509.GeneralName
public class GeneralName
The GeneralName
object.
Implements the GeneralName
ASN.1 definition from RFC 3280.
This class is an enhancement of org.bouncycastle.asn1.x509.GeneralName
.
Provides the new function getNameAsString()
for some tags.
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 }
Documentation from RFC 3280 about subjectAltName
When the subjectAltName extension contains an Internet mail address, the address MUST be included as an rfc822Name. The format of an rfc822Name is an "addr-spec" as defined in RFC 822 [RFC 822]. When the subjectAltName extension contains a domain name service label, the domain name MUST be stored in the dNSName (an IA5String). The name MUST be in the "preferred name syntax," as specified by RFC 1034 [RFC 1034]. When the subjectAltName extension contains a URI, the name MUST be stored in the uniformResourceIdentifier (an IA5String). The name MUST be a non-relative URL, and MUST follow the URL syntax and encoding rules specified in [RFC 1738]. The name must include both a scheme (e.g., "http" or "ftp") and a scheme-specific-part. The scheme- specific-part must include a fully qualified domain name or IP address as the host. When the subjectAltName extension contains a iPAddress, the address MUST be stored in the octet string in "network byte order," as specified in RFC 791 [RFC 791]. The least significant bit (LSB) of each octet is the LSB of the corresponding byte in the network address. For IP Version 4, as specified in RFC 791, the octet string MUST contain exactly four octets. For IP Version 6, as specified in RFC 1883, the octet string MUST contain exactly sixteen octets [RFC 1883].
Field Summary | |
---|---|
static int |
directoryName
Tag directoryName = 4. |
static int |
dNSName
Tag dNSName = 2. |
static int |
ediPartyName
Tag ediParyName = 5. |
static int |
iPAddress
Tag iPAddress = 7. |
static int |
otherName
Tag otherName = 0. |
static int |
registeredID
Tag registeredID = 8. |
static int |
rfc822Name
Tag rfc822Name = 1. |
static int |
uniformResourceIdentifier
Tag uniformResourceIdentifier = 6. |
static int |
x400Address
Tag x400Address = 3. |
Fields inherited from class org.bouncycastle.asn1.ASN1Encodable |
---|
BER, DER |
Constructor Summary | |
---|---|
GeneralName(int tag,
org.bouncycastle.asn1.ASN1Encodable name)
Default Constructor. |
|
GeneralName(int tag,
java.lang.String name)
Create a General name for the given tag from the passed in String. |
|
GeneralName(RDNSequence dirName)
Constructor for directoryName (tag 4). |
|
GeneralName(org.bouncycastle.asn1.x509.X509Name dirName)
Constructor for directoryName (tag 4). |
Method Summary | |
---|---|
static GeneralName |
createNewIP(java.lang.String ipAddress)
Creates a new instance with the given IP address. |
static GeneralName |
getInstance(org.bouncycastle.asn1.ASN1TaggedObject tagObj,
boolean explicit)
|
static GeneralName |
getInstance(java.lang.Object obj)
General constructor. |
org.bouncycastle.asn1.DEREncodable |
getName()
Returns the Name as DEREncodable. |
java.lang.String |
getNameAsString()
Returns the Name as String. |
int |
getTagNo()
Returns the Tag Number. |
org.bouncycastle.asn1.DERObject |
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 |
Field Detail |
---|
public static final int otherName
otherName
= 0.
public static final int rfc822Name
rfc822Name
= 1.
public static final int dNSName
dNSName
= 2.
public static final int x400Address
x400Address
= 3.
public static final int directoryName
directoryName
= 4.
public static final int ediPartyName
ediParyName
= 5.
public static final int uniformResourceIdentifier
uniformResourceIdentifier
= 6.
public static final int iPAddress
iPAddress
= 7.
public static final int registeredID
registeredID
= 8.
Constructor Detail |
---|
public GeneralName(org.bouncycastle.asn1.x509.X509Name dirName)
public GeneralName(RDNSequence dirName)
public GeneralName(int tag, org.bouncycastle.asn1.ASN1Encodable name)
public GeneralName(int tag, java.lang.String name)
tag
- tag numbername
- string representation of nameMethod Detail |
---|
public static GeneralName createNewIP(java.lang.String ipAddress)
public static GeneralName getInstance(java.lang.Object obj)
public static GeneralName getInstance(org.bouncycastle.asn1.ASN1TaggedObject tagObj, boolean explicit)
public int getTagNo()
public org.bouncycastle.asn1.DEREncodable getName()
public java.lang.String getNameAsString()
public org.bouncycastle.asn1.DERObject toASN1Object()
toASN1Object
in class org.bouncycastle.asn1.ASN1Encodable
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |