| java.lang.Object | |||
| ↳ | sun.security.x509.Extension | ||
| ↳ | sun.security.x509.CRLDistributionPointsExtension | ||
| ↳ | sun.security.x509.FreshestCRLExtension | ||
Represents the Freshest CRL Extension.
The extension identifies how delta CRL information for a complete CRL is obtained.
The extension is defined in Section 5.2.6 of Internet X.509 PKI Certific ate and Certificate Revocation List (CRL) Profile.
Its ASN.1 definition is as follows:
id-ce-freshestCRL OBJECT IDENTIFIER ::= { id-ce 46 }
FreshestCRL ::= CRLDistributionPoints
| Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| String | NAME | Attribute name. | |||||||||
|
[Expand]
Inherited Constants | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
sun.security.x509.CRLDistributionPointsExtension
| |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
sun.security.x509.Extension
| |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Creates a freshest CRL extension.
| |||||||||||
Creates the extension from the passed DER encoded value of the same.
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Writes the extension to the DerOutputStream.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
sun.security.x509.CRLDistributionPointsExtension
| |||||||||||
From class
sun.security.x509.Extension
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
sun.security.x509.CertAttrSet
| |||||||||||
Creates a freshest CRL extension. The criticality is set to false.
| distributionPoints | the list of delta CRL distribution points. |
|---|
| IOException |
|---|
Creates the extension from the passed DER encoded value of the same.
| critical | true if the extension is to be treated as critical. |
|---|---|
| value | an array of DER encoded bytes of the actual value. |
| IOException | on decoding error. |
|---|
Writes the extension to the DerOutputStream.
| out | the DerOutputStream to write the extension to. |
|---|
| IOException | on encoding errors. |
|---|