java.lang.Object | |||
↳ | sun.security.x509.Extension | ||
↳ | sun.security.x509.CRLNumberExtension | ||
↳ | sun.security.x509.DeltaCRLIndicatorExtension |
Represents the Delta CRL Indicator Extension.
The extension identifies a CRL as being a delta CRL. Delta CRLs contain updates to revocation information previously distributed, rather than all the information that would appear in a complete CRL. The extension contains a CRL number that identifies the CRL, complete for a given scope, that was used as the starting point in the generation of this delta CRL.
The extension is defined in Section 5.2.4 of Internet X.509 PKI Certific ate and Certificate Revocation List (CRL) Profile.
Its ASN.1 definition is as follows:
id-ce-deltaCRLIndicator OBJECT IDENTIFIER ::= { id-ce 27 } BaseCRLNumber ::= CRLNumber CRLNumber ::= INTEGER (0..MAX)
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | NAME | Attribute name. |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a delta CRL indicator extension with the integer value .
| |||||||||||
Creates a delta CRL indictor extension with the BigInteger value .
| |||||||||||
Creates the extension from the passed DER encoded value of the same.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Writes the extension to the DerOutputStream.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() | |||||||||||
![]() |
Creates a delta CRL indicator extension with the integer value . The criticality is set to true.
crlNum | the value to be set for the extension. |
---|
IOException |
---|
Creates a delta CRL indictor extension with the BigInteger value . The criticality is set to true.
crlNum | the value to be set for the extension. |
---|
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. |
ClassCastException | if value is not an array of bytes |
---|---|
IOException | on decoding error. |
Writes the extension to the DerOutputStream.
out | the DerOutputStream to write the extension to. |
---|
IOException | on encoding errors. |
---|