Click or drag to resize
MimeKit

X509CertificateRecordFields Enumeration

X.509 certificate record fields.

Namespace: MimeKit.Cryptography
Assembly: MimeKit (in MimeKit.dll) Version: 4.3.0
Syntax
C#
[FlagsAttribute]
public enum X509CertificateRecordFields
Members
Member nameValueDescription
Id1 The "id" field is typically just the ROWID in the database.
Trusted2 The "trusted" field is a boolean value indicating whether the certificate is trusted.
Algorithms8 The "algorithms" field is used for storing the last known list of EncryptionAlgorithm values that are supported by the client associated with the certificate.
AlgorithmsUpdated16 The "algorithms updated" field is used to store the timestamp of the most recent update to the Algorithms field.
Certificate32 The "certificate" field is sued for storing the binary data of the actual certificate.
PrivateKey64 The "private key" field is used to store the encrypted binary data of the private key associated with the certificate, if available.
Remarks
The record fields are used when querying the IX509CertificateDatabase for certificates.
See Also