java.lang.Object | |
↳ | sun.security.pkcs.PKCS10Attributes |
This class defines the PKCS10 attributes for the request. The ASN.1 syntax for this is:
Attributes ::= SET OF Attribute
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Default constructor for the PKCS10 attribute.
| |||||||||||
Create the object from the array of PKCS10Attribute objects.
| |||||||||||
Create the object, decoding the values from the passed DER stream.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Delete the attribute value.
| |||||||||||
Encode the attributes in DER form to the stream.
| |||||||||||
Encode the attributes in DER form to the stream.
| |||||||||||
Compares this PKCS10Attributes for equality with the specified
object.
| |||||||||||
Get the attribute value.
| |||||||||||
Return a Collection of attributes existing within this
PKCS10Attributes object.
| |||||||||||
Return an enumeration of names of attributes existing within this
attribute.
| |||||||||||
Returns a hashcode value for this PKCS10Attributes.
| |||||||||||
Set the attribute value.
| |||||||||||
Returns a string representation of this PKCS10Attributes object
in the form of a set of entries, enclosed in braces and separated
by the ASCII characters ", " (comma and space).
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Default constructor for the PKCS10 attribute.
Create the object from the array of PKCS10Attribute objects.
attrs | the array of PKCS10Attribute objects. |
---|
Create the object, decoding the values from the passed DER stream. The DER stream contains the SET OF Attribute.
in | the DerInputStream to read the attributes from. |
---|
IOException | on decoding errors. |
---|
Encode the attributes in DER form to the stream.
Implements the DerEncoder
interface.
out | the OutputStream to marshal the contents to. |
---|
IOException | on encoding errors. |
---|
Encode the attributes in DER form to the stream.
out | the OutputStream to marshal the contents to. |
---|
IOException | on encoding errors. |
---|
Compares this PKCS10Attributes for equality with the specified
object. If the other
object is an
instanceof
PKCS10Attributes
, then
all the entries are compared with the entries from this.
other | the object to test for equality with this PKCS10Attributes. |
---|
Return a Collection of attributes existing within this PKCS10Attributes object.
Return an enumeration of names of attributes existing within this attribute.
Returns a hashcode value for this PKCS10Attributes.
Returns a string representation of this PKCS10Attributes object in the form of a set of entries, enclosed in braces and separated by the ASCII characters ", " (comma and space).
Overrides the toString method of Object.