Skip to content

llSignRSA

Function Syntax
string llSignRSA(
  1. string PrivateKey, // The PEM-formatted private key
  2. string Message, // The message contents to sign
  3. string Algorithm // The digest algorithnm to use: sha1, sha224, sha256, sha384, sha512
);

Returns the base64-encoded RSA signature of Message using PEM-formatted PrivateKey and digest Algorithm (sha1, sha224, sha256, sha384, sha512).