|
|
|
|
|
CertificateSelect (Function) In french: CertificatSélecteur Opens a window for selecting the certificates. The listed certificates are the certificates installed in the personal store. MonCertificat is Certificate
MonCertificat = CertificateSelect()
IF MonCertificat.Name = "" THEN
RETURN
END
IF MonCertificat.ValidForSignature = False THEN
Info("Le certificat sélectionné ne permet de pas de générer une signature.")
RETURN
END
bufSignature is Buffer
bufSignature = CertificateSignString("Chaîne de caractères à signer", MonCertificat)
MonCertificatExtrait is Certificate
MonCertificatExtrait = CertificateExtract(bufSignature)
IF MonCertificatExtrait = Null THEN
RETURN
END
CertificateOpenProperties(MonCertificatExtrait)
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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|