Skip to content

Decrypt columns

Description

The Decrypt Columns activity is used to convert encrypted column values back to their original readable form using a user-provided password. This is useful when sensitive information (e.g., names, emails, IDs) has been encrypted for security and now needs to be decrypted for analysis or reporting.

It supports decryption of multiple columns using symmetric two-way encryption, meaning the same password used to encrypt the data must be used to decrypt it.

Use case: Decrypt personal identifiable information (PII) like names and contact numbers that were encrypted for compliance purposes.


Input

Input TypeRequired
DataRequired

Output

Output TypeFormatDescription
DataTabularData with specified columns decrypted

Configuration Fields

Field NameRequiredDescription
Column namesYesOne or more columns to be decrypted. These must contain encrypted strings.
PasswordYesThe password or key used for decryption. Must be the same as used in encryption.

Sample Input

IDName
1U2FsdGVkX1+abcdef123=
2U2FsdGVkX1+ghijk456=

Sample Configuration

FieldValue
Column names[“Name”]
PasswordmySecretKey

Sample Output

IDName
1John Doe
2Jane Doe