Security
Sign a message with a private key or verify a signature with a public key — supports RSA-PSS (SHA-256), ECDSA (P-256), and Ed25519. Pure client-side crypto (Node crypto.createSign/createVerify), no network. Paste a PEM key to sign or to verify a base64 signature. This tool signs/verifies; it does not generate key pairs.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/digital-signature-generator' \
-H 'Content-Type: application/json' \
-d '{"mode":"sign","algorithm":"ed25519","message":"This document is authentic.","privateKey":"-----BEGIN PRIVATE KEY-----\nMC4CAQAwBQYDK2VwBCIEILoP...\n-----END PRIVATE KEY-----","publicKey":"-----BEGIN PUBLIC KEY-----\n...\n-----END PUBLIC KEY-----\n\n(Used in Verify mode.)","signature":"Paste the base64 signature to verify. (Used in Verify mode.)"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/digital-signature-generator| Name | Type | Required | Description |
|---|---|---|---|
| mode | select | No | — |
| algorithm | select | No | — |
| message | textarea | Yes | — |
| privateKey | textarea | No | — |
| publicKey | textarea | No | — |
| signature |
Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-digital-signature-generator": {
"name": "digital-signature-generator",
"description": "Sign a message with a private key or verify a signature with a public key — supports RSA-PSS (SHA-256), ECDSA (P-256), and Ed25519. Pure client-side crypto (Node crypto.createSign/createVerify), no network. Paste a PEM key to sign or to verify a base64 signature. This tool signs/verifies; it does not generate key pairs.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=digital-signature-generator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "digital-signature-generator",
"arguments": {
"mode": "sign",
"algorithm": "ed25519",
"message": "This document is authentic.",
"privateKey": "-----BEGIN PRIVATE KEY-----\nMC4CAQAwBQYDK2VwBCIEILoP...\n-----END PRIVATE KEY-----",
"publicKey": "-----BEGIN PUBLIC KEY-----\n...\n-----END PUBLIC KEY-----\n\n(Used in Verify mode.)",
"signature": "Paste the base64 signature to verify. (Used in Verify mode.)"
}
}
}| textarea |
| No |
| — |
HTML result
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Questions or issues? Contact [email protected]