interface CryptoNodeParameters {
action?: "generate" | "hash" | "hmac" | "sign";
algorithm?:
| "md5"
| "sha1"
| "sha224"
| "sha256"
| "sha384"
| "sha512"
| "sha512-224"
| "sha512-256"
| "ripemd160";
binaryData?: boolean;
binaryPropertyName?: string;
dataPropertyName?: string;
encoding?: "base64"
| "hex";
encodingType?: "ascii" | "base64" | "hex" | "uuid";
privateKey?: string;
secret?: string;
stringLength?: number;
type?:
| "MD5"
| "SHA256"
| "SHA3-256"
| "SHA3-384"
| "SHA3-512"
| "SHA384"
| "SHA512";
value?: string;
}
Properties§
Source§readonly algorithm?:
| "md5"
| "sha1"
| "sha224"
| "sha256"
| "sha384"
| "sha512"
| "sha512-224"
| "sha512-256"
| "ripemd160"
readonly algorithm?:
| "md5"
| "sha1"
| "sha224"
| "sha256"
| "sha384"
| "sha512"
| "sha512-224"
| "sha512-256"
| "ripemd160"
Choose from the list, or specify an ID using an expression
Source§readonly binary Property Name?: string
readonly binary Property Name?: string
Name of the binary property which contains the input data Default: "data"
Source§readonly data Property Name?: string
readonly data Property Name?: string
Name of the property to which to write the hash Default: "data"
Source§readonly encoding Type?: "ascii" | "base64" | "hex" | "uuid"
readonly encoding Type?: "ascii" | "base64" | "hex" | "uuid"
Encoding that will be used to generate string Default: "uuid"
Default: "hash"