Creates binary file from the hex string or random bytes.

Command name:

bin-dump

Inputs:

Name

Type

Optional/Required

Description

data

string

optional

The hex string. Either

data

or

random

property must be specified.

random

string, integer

optional

Generate random binary of the specified length.

description

string

optional

Description for this field.

Outputs:

Name

Type

Optional/Required

Description

file

string

required

Path to the output bin file.

description

string

optional

Description for this field.

Example:

{
"schema-version": 1.0,
"content": [
{
"name": "bin-dump command example",
"description": "Creates binary file",
"enabled": true,
"commands": [
{
"command": "bin-dump",
"inputs": [
{
"description": "Hex string or random value",
"data": "0011223344556677889900AABBCCDDEEFF",
"random": null
}
],
"outputs": [
{
"description": "Output file",
"file": "output.bin"
}
]
}
]
}
]
}