|
|
|
|
|
<Certificate variable>.OpenProperties (Function) In french: <Variable Certificat>.OuvrePropriétés Opens the Windows window used to find out the properties of a certificate. 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
MyExtractedCertificate.OpenProperties()
Syntax
<Result> = <Certificate>.OpenProperties()
<Result>: Boolean - True if the window for certificate properties was opened,
- False otherwise.
<Certificate>: Certificate variable Name of the Certificate variable containing the certificate whose properties must be displayed.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|