From Base32
Description
This operation is used to decode data that has been encoded in Base32 format back into its original form.
Base32 is an encoding scheme that represents binary data using 32 ASCII characters. It’s commonly used in systems where case-insensitivity is beneficial or where limited character sets are required, such as Google Authenticator secrets (TOTP/HOTP), QR codes, DNS, or URLs.
Data types
These are the input/output expected data types for this operation:
Input data
- The Base32 strings you want to decode.
Output data
- Decoded strings.
Parameters
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Example
Suppose you want to decode a series of events in the Base32 encoding scheme:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose From Base32.
Set Alphabet to RFC4648 (Standard).
Set Remove non-original chars to true.
Give your Output field a name and click Save. The values in your input field will be decoded. For example:
NBSWY3DP,! -> hello
Last updated
Was this helpful?