Skip to content

Latest commit

 

History

History

hmac

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

common/hmac

This is generated documentation for the hmac component.

Component-wide configuration

Name Type Description
secret bytes

Operations

from_bytes

Inputs

Name Type Description
input bytes

Outputs

Name Type Description
output bytes

Usage

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"

from_string

Inputs

Name Type Description
input string

Outputs

Name Type Description
output bytes

Usage

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"