TdxX509CertificateKeyUsageFlag Enum
In This Article
Enumerates purposes of an X.509 certificate key.
#Declaration
Delphi
TdxX509CertificateKeyUsageFlag = (
kufDigitalSignature,
kufNonRepudiation,
kufKeyEncipherment,
kufDataEncipherment,
kufKeyAgreement,
kufKeyCertSign,
kufOfflineCRLSign
);
#Members
Name |
---|
kuf
|
kuf
|
kuf
|
kuf
|
kuf
|
kuf
|
kuf
|
#Remarks
You can use a certificate key:
Value | Description |
---|---|
kuf |
As a digital signature. Note that the certificate must have a private key to sign documents. |
kuf |
For authentication. |
kuf |
For encryption. |
kuf |
To encrypt data. |
kuf |
To determine key agreement. |
kuf |
To sign certificates. |
kuf |
To sign a certificate revocation list. |
The TdxX509CertificateKeyUsageFlags type references TdxX509CertificateKeyUsageFlag.
See Also