Decode Base64
Decodes the input text from base64 and prints the result to the output screen. The action supports either standard base64 or URL base64 encoding.
Decode Hex
Converts a hex-encoded string to a string. For example: For the hexadecimal encoded string:626C696E6B, the returned string will be: blink.

Decode JWT
Decode a JSON Web Token (JWT).
Encode Base64
Encodes the input text to base64 and prints the result to the output screen. The action supports either standard base64 or URL base64 encoding.
Encode Hex
Converts a regular string to its hex representation, encoding each character of the string into hexadecimal format. For example: For input string:blink, the returned hexadecimal string will be: 626c696e6b.

Encode JWT
Encode JSON Web Token (JWT).
Generate MD5 Hash
Generates a MD5 hash from a string or from a file. For example: For input string:blink, the returned generated MD5 hash will be: 40652ee9ae143f1c1c830f01a5449ecb.

Generate Password
Generates a secret password and stores it in a variable.
Generate SHA1 Hash
Generates a SHA1 hash from a string or from a file. For example: For input string:blink, the returned generated SHA1 hash will be: dcae3a7a7c14a77ef384f1c5df6e63edc780eba0.

Generate SHA256 Hash
Generates a SHA256 hash from a string or from a file. For example: For input string:blink, the returned generated SHA256 hash will be: e14a51fded1fb9b43de815d3832da099053b583f1d2c01d0495a70f118df426c.

Generate UUID V4
Generates a random version 4 UUID. Note: A Version 4 UUID is a universally unique identifier that is generated using random numbers. There is no warranty that the provided UUID is unique.
Get TLS Certificate Information
Retrieves information about the security certificate (TLS/SSL) used by an endpoint for encrypted communication.