BE_SignatureGenerateRSA

BE_SignatureGenerateRSA(data;privateKey;{privateKeyPassword;algorithm;fileNameWithExtension})



Generates a digital signature of data. The message digest of data is calculated first using the specified algorithm. Then the digest is encrypted with privateKey.  Uses OpenSSL so algorithms come from there, and should be generally compatible.

Parameters:

- data : The data to be signed. It can be text or container field.

- privateKey : The private key (as text) to digitally sign the input text.

- privateKeyPassword : The password of the private key. It will be ignored if the private key is not password-protected.

- algorithm : The hash algorithm (as text) to calculate the digest of the data. "SHA256" will be used when it's empty or omitted.

- fileNameWithExtension : The filename and extension for the generated signature file.

Keywords:

Signature RSA


Version History:

- 4.0 :

- 4.0.2 : Renamed from BE_SignatureGenerate_RSA

Still need help? Contact Us Contact Us