字段级数据解密器
使用各种解密方法对CSV数据中的特定字段进行解密以恢复加密信息
API 文档
请求端点
POST /zh/api/tools/field-decryptor
请求参数
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| csvData | textarea | 是 | - |
| decryptionMethod | select | 是 | - |
| selectedFields | text | 否 | 指定要解密的CSV列。如果留空,默认将解密所有字段。 |
| decryptionKey | text | 否 | 仅AES解密方法需要。使用与加密时相同的密钥。 |
| caesarShift | number | 否 | Caesar密码解密的移位位数(1-25) |
| preserveStructure | checkbox | 否 | 保持CSV标题并维持原始数据结构 |
| exportFormat | select | 是 | - |
| decryptedOnly | checkbox | 否 | 跳过详细分析,仅输出解密后的数据 |
响应格式
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}
文本:
文本
AI MCP 文档
将此工具添加到您的 MCP 服务器配置中:
{
"mcpServers": {
"elysiatools-field-decryptor": {
"name": "field-decryptor",
"description": "使用各种解密方法对CSV数据中的特定字段进行解密以恢复加密信息",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=field-decryptor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
你可以串联多个工具,比如:`https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`,最多20个。
如果遇见问题,请联系我们:[email protected]