This workflow performs basic XOR-based encryption and decryption using a custom password. It is intended to be triggered by another workflow and processes structured input in JSON format.
The workflow expects a single array of objects with the following fields:
action-type
: either "encrypt"
or "decrypt"
key
: the password used for encryption and decryptiondata
: the content to encrypt or decrypt[
{
"action-type": "encrypt",
"key": "Password",
"data": "Hello, this is a secret message"
}
]
[
{
"action-type": "decrypt",
"key": "Password",
"data": "ChwGAQceF15eE2QXFRcUagxGVgV8TBoNBA4VQVoQZkwVUhImU1FTEg=="
}
]
The output returns an array of results, each containing either the encrypted string (base64 format) or the decrypted plain text.
This workflow is useful for simple internal message encoding, data obfuscation, or testing purposes. It is not recommended for securing sensitive or personal data, as XOR encryption is not cryptographically secure.
The workflow logic is written in JavaScript using n8n Function nodes, without any external dependencies.