|
|
|
|
|
<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  // Open the certificate picker of Windows MyCertificate = CertificateSelect()  // Cancellation or error IF MyCertificate.Name = "" THEN RETURN END  // Checks whether the selected certificate is valid for signing IF MyCertificate.ValidForSignature = False THEN Info("The selected certificate cannot be used to generate a signature.") RETURN END  // Retrieve the buffer containing the signature bufSignature is Buffer bufSignature = CertificateSignString("Character string to sign", MyCertificate)  // Retrieve the certificate found in the signature buffer MyExtractedCertificate is Certificate MyExtractedCertificate = CertificateExtract(buffSignature)  // Manage the errors IF MyExtractedCertificate = Null THEN RETURN END  // Open the window for certificate properties 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|