Returns the list of certificates available on the computer.
// Retrieve the list of certificates available on the computer
// (Windows personal certificate store)
arrCertificate is array of Certificates
arrCertificate = CertificateList()
// Browse the certificates
ACertificate is Certificate
i is int
i = 1
FOR EACH ACertificate OF arrCertificate
// Checks whether the certificate is valid for signing
IF ACertificate.ValidForSignature = True THEN
// Adds the certificate into a Combo Box control
ListAdd(COMBO_CERTIFICATECHOICE, ACertificate.Name + ...
"(" + ACertificate.Issuer + ")" + gStoredValue(i))
i++
END
END
Syntax
<Result> = CertificateList([<Store location> [, <Store name>]])
<Result>: Array of Certificate variables
Name of the array of Certificate variables that contains the list of certificates available on the computer.
<Store location>: Optional Integer constant
Location of the certificate store where certificates are to be retrieved:
| |
certLocalMachineStore | Corresponding location: HKEY_LOCAL_MACHINE/Software/Microsoft/ SystemCertificates |
certLocalMachineStoreEnterprise | Corresponding location: Loaded from the enterprise domains. |
certCurrentServiceStore | Corresponding location: HKEY_LOCAL_MACHINE/Software/Microsoft/Cryptography/ Services/ServiceName/SystemCertificates |
certServiceStore | Corresponding location: HKEY_LOCAL_MACHINE/Software/Microsoft/Cryptography/ Services/ServiceName/SystemCertificates |
certLocalMachineStorePolicy | Corresponding location: HKEY_LOCAL_MACHINE/Software/Policy/Microsoft/ SystemCertificates |
certCurrentUserStorePolicy | Corresponding location: HKEY_CURRENT_USER/Software/Policy/Microsoft/ |
certCurrentUserStore (Default value) | Corresponding location: HKEY_CURRENT_USER/Software/Microsoft/ SystemCertificates |
certUsersStore | Corresponding location: HKEY_USERS/UserName/Software/Microsoft/ SystemCertificates |
<Store name>: Optional character string or optional constant
Name of the store where certificates are to be retrieved. This parameter can correspond to: - a character string,
- one of the following constants:
| |
certAuthority | Certification authority store. |
certTrust | Trusted store. |
certPersonal (Default value) | Personal store. |
certRoot | Root store |
Business / UI classification: Business Logic