Component: Base 64 (Calculation)

From Flowcode Help
Jump to navigationJump to search
Author Matrix TSL
Version 1.0
Category Calculation


Base 64 component

Component to allow base 64 encoding and decoding. Sometimes when communicating raw binary data it is useful to perform base 64 encoding to ensure that none of your data bytes trigger any escape codes or other special case conditions. Base64 converts your binary data into readable data using standard ASCII characters so you can be fairly certain that the data you send is the same as the data that is received.

Component Source Code

Please click here to download the component source project: FC_Comp_Source_Base64.fcfx

Please click here to view the component source code (Beta): FC_Comp_Source_Base64.fcfx

Detailed description

No detailed description exists yet for this component

Examples

Here is a basic example that shows how to convert data into base64 encoded data and visa versa. FC6 Icon.png Base64 Tests






Macro reference

Decode

Fc9-comp-macro.png Decode
Decodes a base64 encoded string into an array of bytes. Populates the BinaryData parameter array with the decoded data. Returns the number of decoded data bytes. 
Fc9-u8-icon.png - BYTE BinaryData
Variable to hold the decoded binary data 
Fc9-string-icon.png - STRING Base64Data
Data string you wish to decode 
Fc9-u16-icon.png - UINT Return


Encode

Fc9-comp-macro.png Encode
Encodes an array of bytes into a base64 encoded string 
Fc9-u8-icon.png - BYTE BinaryData
Raw binary data array you wish to encode 
Fc9-u16-icon.png - UINT ByteCount
Number of bytes of data to encode 
Fc9-string-icon.png - STRING Return


Property reference

Fc9-prop-icon.png Properties