Class PKCS12Attribute
java.lang.Object
java.security.PKCS12Attribute
- All Implemented Interfaces:
KeyStore.Entry.Attribute
An attribute associated with a PKCS12 keystore entry.
The attribute name is an ASN.1 Object Identifier and the attribute
value is a set of ASN.1 types.
- Since:
- 1.8
-
Constructor Summary
ConstructorsConstructorDescriptionPKCS12Attribute(byte[] encoded) Constructs a PKCS12 attribute from its ASN.1 DER encoding.PKCS12Attribute(String name, String value) Constructs a PKCS12 attribute from its name and value. -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares thisPKCS12Attributeand a specified object for equality.byte[]Returns the attribute's ASN.1 DER encoding.getName()Returns the attribute's ASN.1 Object Identifier represented as a list of dot-separated integers.getValue()Returns the attribute's ASN.1 DER-encoded value as a string.inthashCode()Returns the hashcode for thisPKCS12Attribute.toString()Returns a string representation of thisPKCS12Attribute.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Constructor Details
-
PKCS12Attribute
Constructs a PKCS12 attribute from its name and value. The name is an ASN.1 Object Identifier represented as a list of dot-separated integers. A string value is represented as the string itself. A binary value is represented as a string of colon-separated pairs of hexadecimal digits. Multivalued attributes are represented as a comma-separated list of values, enclosed in square brackets. SeeArrays.toString(java.lang.Object[]).A string value will be DER-encoded as an ASN.1 UTF8String and a binary value will be DER-encoded as an ASN.1 Octet String.
- Parameters:
name- the attribute's identifiervalue- the attribute's value- Throws:
NullPointerException- ifnameorvalueisnullIllegalArgumentException- ifnameorvalueis incorrectly formatted
-
PKCS12Attribute
public PKCS12Attribute(byte[] encoded) Constructs a PKCS12 attribute from its ASN.1 DER encoding. The DER encoding is specified by the following ASN.1 definition:Attribute ::= SEQUENCE { type AttributeType, values SET OF AttributeValue } AttributeType ::= OBJECT IDENTIFIER AttributeValue ::= ANY defined by type- Parameters:
encoded- the attribute's ASN.1 DER encoding. It is cloned to prevent subsequent modification.- Throws:
NullPointerException- ifencodedisnullIllegalArgumentException- ifencodedis incorrectly formatted
-
-
Method Details
-
getName
Returns the attribute's ASN.1 Object Identifier represented as a list of dot-separated integers.- Specified by:
getNamein interfaceKeyStore.Entry.Attribute- Returns:
- the attribute's identifier
-
getValue
Returns the attribute's ASN.1 DER-encoded value as a string. An ASN.1 DER-encoded value is returned in one of the followingStringformats:- the DER encoding of a basic ASN.1 type that has a natural string representation is returned as the string itself. Such types are currently limited to BOOLEAN, INTEGER, OBJECT IDENTIFIER, UTCTime, GeneralizedTime and the following six ASN.1 string types: UTF8String, PrintableString, T61String, IA5String, BMPString and GeneralString.
- the DER encoding of any other ASN.1 type is not decoded but returned as a binary string of colon-separated pairs of hexadecimal digits.
Arrays.toString(java.lang.Object[]).- Specified by:
getValuein interfaceKeyStore.Entry.Attribute- Returns:
- the attribute value's string encoding
-
getEncoded
public byte[] getEncoded()Returns the attribute's ASN.1 DER encoding.- Returns:
- a clone of the attribute's DER encoding
-
equals
-
hashCode
-
toString
-