{
  "name": "RC4 加密",
  "slug": "rc4",
  "description": "在线 RC4 流密码加密/解密工具",
  "api_url": "/api/rc4/",
  "ui_url": "/tools/rc4/",
  "schema_url": "/tools/rc4/schema.json",
  "endpoint": "POST /api/rc4/",
  "request_schema": {
    "type": "object",
    "required": [
      "action",
      "text",
      "key"
    ],
    "properties": {
      "action": {
        "type": "string",
        "enum": [
          "encrypt",
          "decrypt"
        ]
      },
      "text": {
        "type": "string"
      },
      "key": {
        "type": "string"
      },
      "output": {
        "type": "string",
        "enum": [
          "hex",
          "base64",
          "binary"
        ]
      }
    }
  }
}