Base64
The Base64 component is an operator component that allows users to encode or decode a string in Base64 format. It can carry out the following tasks:
Release Stage
Alpha
Configuration
The component definition and tasks are defined in the definition.yaml and tasks.yaml files respectively.
Supported Tasks
Encode
Encode data into base64 string
| Input | Field ID | Type | Description |
|---|---|---|---|
| Task ID (required) | task | string | TASK_ENCODE |
| Data (required) | data | string | Data to be encoded. |
| Output | Field ID | Type | Description |
|---|---|---|---|
| Data | data | string | Data. |
Decode
Decode the base64 string.
| Input | Field ID | Type | Description |
|---|---|---|---|
| Task ID (required) | task | string | TASK_DECODE |
| Data (required) | data | string | Base64 string to be decoded. |
| Output | Field ID | Type | Description |
|---|---|---|---|
| Data | data | string | Data. |
Updated 2 months ago