Base64

Provides encoding of binary or string data to and from Base64.

Revision History

2.0.0.1 Initial Release

Properties

Action

Type: List Input
The Action Property

Encode - Indicates that the data in DecodedData should be encoded to Base64 and returned in the EncodedData property
Decode - Indicates that the data in EncodedData should be decoded from Base64 and returned in the DecodedData property

DecodedDataType

Type: List Input
The DecodedDataType Property

UTF8String - Indicates that the decoded data is a string
ByteArray - Indicates that the decoded data is a byte array

DecodedData

Type: Multiline Text InputOutput
The decoded data.

EncodedData

Type: Multiline Text InputOutput
The encoded data.

Remarks

Use this Node to easily encode a string or byte array to a Base64 string or to decode a Base64 string into a string or byte array.

In Base64 format, data can be safely sent over a non-binary transport without losing its integrity.