Click or drag to resize

X509ArchiveCutoffExtension Class

Represents X.509 Archive Cutoff extension which is first defined in RFC2560.
Inheritance Hierarchy
SystemObject
  System.Security.CryptographyAsnEncodedData
    System.Security.Cryptography.X509CertificatesX509Extension
      System.Security.Cryptography.X509CertificatesX509ArchiveCutoffExtension

Namespace:  System.Security.Cryptography.X509Certificates
Assembly:  SysadminsLV.PKI (in SysadminsLV.PKI.dll) Version: 3.7.0.0 (3.7.0.0)
Syntax
public class X509ArchiveCutoffExtension : X509Extension

The X509ArchiveCutoffExtension type exposes the following members.

Constructors
  NameDescription
Public methodX509ArchiveCutoffExtension
Initializes a new instance of the X509ArchiveCutoffExtension class.
Public methodX509ArchiveCutoffExtension(DateTime)
Initializes a new instance of the X509ArchiveCutoffExtension class using a cutoff date.
Public methodX509ArchiveCutoffExtension(AsnEncodedData, Boolean)
Initializes a new instance of the X509ArchiveCutoffExtension class using an AsnEncodedData object and a value that identifies whether the extension is critical.
Top
Properties
  NameDescription
Public propertyCritical
Gets a Boolean value indicating whether the extension is critical.
(Inherited from X509Extension.)
Public propertyCutoffDate
Gets a cutoff date and time.
Public propertyOid
Gets or sets the Oid value for an AsnEncodedData object.
(Inherited from AsnEncodedData.)
Public propertyRawData
Gets or sets the Abstract Syntax Notation One (ASN.1)-encoded data represented in a byte array.
(Inherited from AsnEncodedData.)
Top
Methods
  NameDescription
Public methodCopyFrom
Copies the extension properties of the specified AsnEncodedData object.
(Inherited from X509Extension.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFormat
Returns a formatted version of the Abstract Syntax Notation One (ASN.1)-encoded data as a string.
(Overrides AsnEncodedDataFormat(Boolean).)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodEncode
Encodes current extension to ASN.1-encoded byte array.
(Defined by X509ExtensionExtensions.)
Top
Remarks
An OCSP responder MAY choose to retain revocation information beyond a certificate's expiration. The date obtained by subtracting this retention interval value from the producedAt time in a response is defined as the certificate's "archive cutoff" date. OCSP-enabled applications would use an OCSP archive cutoff date to contribute to a proof that a digital signature was (or was not) reliable on the date it was produced even if the certificate needed to validate the signature has long since expired.

To illustrate, if a server is operated with a 7-year retention interval policy and status was produced at time t1 then the value for ArchiveCutoff in the response would be (t1 - 7 years).

See Also