base64_encode
Encode text into base64 format securely and efficiently using Crypto_MCP. Ideal for data handling and secure transmission in encryption workflows.
Instructions
encode text to base64
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | text to encode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"content": {
"description": "text to encode",
"type": "string"
}
},
"required": [
"content"
],
"type": "object"
}