Excel字段级加密器
使用各种加密方法对Excel文件中的特定字段进行加密以保护敏感信息
API 文档
请求端点
POST /zh/api/tools/excel-field-encryptor
请求参数
| 参数名 | 类型 | 必填 | 描述 |
|---|---|---|---|
| excelFile | file (需要先上传) | 是 | - |
| encryptionMethod | select | 是 | - |
| selectedFields | text | 否 | Specify which Excel columns to encrypt. If empty, all fields will be encrypted by default. |
| encryptionKey | text | 否 | 仅AES加密方法需要。使用强安全的密钥。 |
| caesarShift | number | 否 | Caesar密码移位的位数(1-25) |
| worksheetIndex | number | 否 | Index of worksheet to process (0 for first worksheet, 1 for second, etc.) |
| hasHeader | checkbox | 否 | 将第一行作为列标题 |
| outputFormat | select | 是 | - |
| encryptedOnly | checkbox | 否 | 跳过详细分析,仅输出加密后的数据 |
文件类型参数需要先通过 POST /upload/excel-field-encryptor 上传获取 filePath,然后将 filePath 传递给对应的文件字段。
响应格式
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}
文件:
文件
AI MCP 文档
将此工具添加到您的 MCP 服务器配置中:
{
"mcpServers": {
"elysiatools-excel-field-encryptor": {
"name": "excel-field-encryptor",
"description": "使用各种加密方法对Excel文件中的特定字段进行加密以保护敏感信息",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=excel-field-encryptor",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
你可以串联多个工具,比如:`https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`,最多20个。
支持 URL 文件链接或 Base64 编码作为文件参数。
如果遇见问题,请联系我们:[email protected]