1. Docs
  2. Formulas
  3. Functions

RSA_SIGN

Signs data using a private key. A digest choosing from "SHA256", "SHA384", and "SHA512" can be passed in with "SHA256" being the default.

Categories: Encryption

Syntax

RSA_SIGN(data, key, [digest: "SHA256"])

Examples

Example 1

Formula

RSA_SIGN(data, key, digest: "SHA256")

Output

"Signed data"
Was this helpful?