Categories

Field-Level Data Encryptor

Encrypt specific fields in CSV data using various encryption methods to protect sensitive information

Specify which CSV columns to encrypt. If empty, all fields will be encrypted by default.

Only required for AES encryption method. Use a strong, secure key.

Number of positions to shift for Caesar cipher (1-25)

Keep CSV headers and maintain original data structure

Skip detailed analysis and only output the encrypted data

API Documentation

Request Endpoint

POST /en/api/tools/field-encryptor

Request Parameters

Parameter Name Type Required Description
csvData textarea Yes -
encryptionMethod select Yes -
selectedFields text No Specify which CSV columns to encrypt. If empty, all fields will be encrypted by default.
encryptionKey text No Only required for AES encryption method. Use a strong, secure key.
caesarShift number No Number of positions to shift for Caesar cipher (1-25)
preserveStructure checkbox No Keep CSV headers and maintain original data structure
exportFormat select Yes -
encryptedOnly checkbox No Skip detailed analysis and only output the encrypted data

Response Format

{
  "result": "Processed text content",
  "error": "Error message (optional)",
  "message": "Notification message (optional)",
  "metadata": {
    "key": "value"
  }
}
Text: Text

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-field-encryptor": {
      "name": "field-encryptor",
      "description": "Encrypt specific fields in CSV data using various encryption methods to protect sensitive information",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=field-encryptor",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]