|
|
|
|
|
CertificateSelect (Function) In french: CertificatSélecteur Opens a window for selecting the certificates. The listed certificates are the certificates installed in the personal store. MyCertificate is Certificate
MyCertificate = CertificateSelect()
IF MyCertificate.Name = "" THEN
RETURN
END
IF MyCertificate.ValidForSignature = False THEN
Info("The selected certificate cannot be used to generate a signature.")
RETURN
END
bufSignature is Buffer
bufSignature = CertificateSignString("Character string to sign", MyCertificate)
MyExtractedCertificate is Certificate
MyExtractedCertificate = CertificateExtract(buffSignature)
IF MyExtractedCertificate = Null THEN
RETURN
END
CertificateOpenProperties(MyExtractedCertificate)
Syntax
<Certificate> = CertificateSelect()
<Certificate>: Certificate variable Name of the Certificate variable to initialize. If the selection window was validated, the Certificate variable is initialized with the values corresponding to the selected certificate. If the selection window was canceled, the Certificate variable contains an empty certificate (its name is not filled for example). Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|