Crypto Node

Hash and encrypt data using standard cryptographic algorithms.

Written By pvdyck

Last updated 15 minutes ago

Crypto Node

The Crypto node applies cryptographic operations to data -- hashing, HMAC generation, signing, and random value generation.

Operations

OperationDescription
GenerateGenerate a random UUID or other cryptographic value
HashCompute a one-way hash of a value
HmacCompute an HMAC (Hash-based Message Authentication Code) using a secret key
SignCreate a digital signature for data

Hash Parameters

ParameterDescription
ValueThe input string to hash
Property NameOutput field name for the hash result
TypeAlgorithm: MD5, SHA-256, SHA-384, SHA-512, SHA3-256, SHA3-512
EncodingOutput encoding: hex (default) or base64

HMAC Parameters

ParameterDescription
ValueThe input string
SecretThe secret key for HMAC computation
TypeAlgorithm: MD5, SHA-256, SHA-384, SHA-512
Property NameOutput field name
Encodinghex or base64

Sign Parameters

ParameterDescription
ValueThe data to sign
Private KeyThe private key (PEM format)
AlgorithmSigning algorithm
EncodingOutput encoding

Generate Parameters

ParameterDescription
Property NameOutput field name for the generated value
TypeType of value to generate (e.g., UUID)

Limitations

  • None. Full support.

Related