Skip to content

llVerifyRSA

Function Syntax
integer llVerifyRSA(
  1. string PublicKey, // The PEM-formatted public key for signature verifiation.
  2. string Message, // The message that was signed.
  3. string Signature, // The base64-formatted signature of the message.
  4. string Algorithm // The digest algorithm: sha1, sha224, sha256, sha384, sha512.
);

Returns TRUE if PublicKey, Message, and Algorithm produce the same base64-formatted Signature.