|
|
|
|
|
HTTPListCertificate (Function) In french: HTTPListeCertificat Lists the client certificates found on the computer to authenticate on a server. A specific certificate can be used via HTTPCertificate. Example of use This function can be used, for example, to avoid the standard certificate selection window when the site asks the customer to authenticate himself. Remarque: The CertificateList function lists the certificates available in the Windows certificate store.. ListeCertif is string
ListeCertif = HTTPListCertificate()
FOR EACH STRING Certif OF ListeCertif SEPARATED BY CR
ListAdd(LISTE_Liste1, ExtractString(Certif, 1, TAB) + ...
gStoredValue(ExtractString(Certif, 3, TAB)))
END
Syntax
<Result> = HTTPListCertificate()
<Result>: Character string List of certificates found on the current computer. The different certificates are separated by a Carriage Return (CR). This list has the following format:
<Certificate name> + TAB + <Supplier> + TAB + <Digital print> + CR + ...
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|