| Package | Description |
|---|---|
| org.cryptacular.x509.dn |
| Modifier and Type | Class and Description |
|---|---|
class |
StandardAttributeType
Describes the registered values of AttributeType that may appear in a RelativeDistinguishedName (RDN) as defined in
section 2 of RFC 2253.
|
class |
UnknownAttributeType
Describes a non-standard AttributeType in dotted decimal form that may appear in a RelativeDistinguishedName (RDN) as
defined in section 2 of RFC 2253.
|
| Modifier and Type | Field and Description |
|---|---|
private AttributeType |
Attribute.type
Attribute type.
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeType |
StandardAttributeType.fromName(java.lang.String name)
Gets the attribute type whose name is the given string.
|
AttributeType |
Attribute.getType() |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
Attributes.getValue(AttributeType type)
Gets the first value of the given type that appears in the attribute list.
|
java.lang.String |
RDNSequence.getValue(AttributeType type)
Gets the first value of the given type that appears in the attribute list of any RDN in the sequence.
|
java.util.List<java.lang.String> |
Attributes.getValues(AttributeType type)
Gets an immutable list of all attributes of the given type.
|
java.util.List<java.lang.String> |
RDNSequence.getValues(AttributeType type)
Gets an immutable list of all attributes of the given type.
|
| Constructor and Description |
|---|
Attribute(AttributeType type,
java.lang.String value)
Creates a new instance of the given type and value.
|