This is generated documentation for the hmac component.
Name | Type | Description |
---|---|---|
secret |
bytes |
Name | Type | Description |
---|---|---|
input |
bytes |
Name | Type | Description |
---|---|---|
output |
bytes |
Given the following configuration:
Component-wide configuration as config.json
:
{
"secret": "XXX"
}
$ wick invoke common/hmac:0.3.0 from_bytes [email protected] -- --input="XXX"
Or with inline configuration:
$ wick invoke common/hmac:0.3.0 from_bytes \
--with='{ "secret":"XXX" }' \
-- --input="XXX"
Name | Type | Description |
---|---|---|
input |
string |
Name | Type | Description |
---|---|---|
output |
bytes |
Given the following configuration:
Component-wide configuration as config.json
:
{
"secret": "XXX"
}
$ wick invoke common/hmac:0.3.0 from_string [email protected] -- --input="XXX"
Or with inline configuration:
$ wick invoke common/hmac:0.3.0 from_string \
--with='{ "secret":"XXX" }' \
-- --input="XXX"