OCLOperators StringToBase64
(Created page with "Will convert the string to an UTF8 encoded string stored in Base64 format.")
 
No edit summary
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Will convert the string to an UTF8 encoded string stored in Base64 format.
<message>Write the content here to display this box</message>
Will convert the string to a UTF8 encoded string stored in Base64 format.
 
When sending Base64 as URL parameter, / and + will not survive - it is common to go like this: StringToBase64.Replace('/','_').Replace('+','-')
 
Chances are that the receiver will use this frequently used replacement pattern and understand the data - [https://stackoverflow.com/questions/1228701/code-for-decoding-encoding-a-modified-base64-url-in-asp-net-framework See this SO-article for background]
 
If you have a string in clear text and want it as a byte array (BLOB), do this 'My clear text string'.StringToBase64.[[Documentation:OCLOperators Base64ToBlob|Base64ToBlob]]
 
When sending SAML tokens - and possibly other things - you are expected to compress the data with Deflate. You can follow a pattern to access the Deflate mechanism in Turnkey. Read more here: [[SysSingleton.Deflate]]
 
[[Category:OCLOperators]]
{{Edited|July|12|2025}}

Latest revision as of 05:55, 4 February 2025

This page was created by Lars.olofsson@mdriven.net on 2019-02-25. Last edited by Stephanie@mdriven.net on 2025-02-04.

Will convert the string to a UTF8 encoded string stored in Base64 format.

When sending Base64 as URL parameter, / and + will not survive - it is common to go like this: StringToBase64.Replace('/','_').Replace('+','-')

Chances are that the receiver will use this frequently used replacement pattern and understand the data - See this SO-article for background

If you have a string in clear text and want it as a byte array (BLOB), do this 'My clear text string'.StringToBase64.Base64ToBlob

When sending SAML tokens - and possibly other things - you are expected to compress the data with Deflate. You can follow a pattern to access the Deflate mechanism in Turnkey. Read more here: SysSingleton.Deflate