Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Sign an input string with an RSA private key using the SHA256withRSA signature algorithm. Useful with JWT authentication.Syntax
SHA256WithRSA(input_string, key)
Arguments
input_string (string) - The string to sign. key - a Base 64 encoded PKCS8 key string.Examples
SHA256WithRSA('my string', '-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----')