Security
Zeigt jeden HMAC-Schritt von HKDF Extract+Expand für Schlüsselableitung, inklusive PRK, T(n) und OKM.
Rufen Sie dieses Werkzeug aus Ihrem Code in drei Sprachen auf.
curl -X POST 'https://api.elysiatools.com/de/api/tools/sp800-56c-hkdf-extract-and-expand-walkthrough' \
-H 'Content-Type: application/json' \
-d '{"preset":"rfc5869","hash":"sha256","encoding":"hex","ikm":"Hex, text, or Base64 according to input encoding","salt":"Optional; empty uses a zero-filled HashLen salt","info":"Optional context / protocol label","length":42}'Senden Sie eine POST-Anfrage mit Ihren Eingaben als JSON. Dateiparameter erfordern einen vorherigen Upload.
POST https://api.elysiatools.com/de/api/tools/sp800-56c-hkdf-extract-and-expand-walkthrough| Name | Typ | Erforderlich | Beschreibung |
|---|---|---|---|
| preset | select | Nein | — |
| hash | select | Nein | — |
| encoding | select | Nein | — |
| ikm | textarea | Nein | — |
| salt | textarea | Nein | — |
| info |
Fügen Sie dieses Werkzeug Ihrem Model-Context-Protocol-Server hinzu, damit KI-Agenten es auflisten und aufrufen können.
Fügen Sie diesen Block Ihrer MCP-Client-Konfiguration hinzu:
{
"mcpServers": {
"elysiatools-sp800-56c-hkdf-extract-and-expand-walkthrough": {
"name": "sp800-56c-hkdf-extract-and-expand-walkthrough",
"description": "Zeigt jeden HMAC-Schritt von HKDF Extract+Expand für Schlüsselableitung, inklusive PRK, T(n) und OKM.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sp800-56c-hkdf-extract-and-expand-walkthrough",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Nach dem Verbinden mit dem SSE-Endpunkt listen Sie die bereitgestellten Werkzeuge auf:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Rufen Sie das Werkzeug über seine ID auf; Argumente werden aus seiner Parameterliste gebildet:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "sp800-56c-hkdf-extract-and-expand-walkthrough",
"arguments": {
"preset": "rfc5869",
"hash": "sha256",
"encoding": "hex",
"ikm": "Hex, text, or Base64 according to input encoding",
"salt": "Optional; empty uses a zero-filled HashLen salt",
"info": "Optional context / protocol label",
"length": 42
}
}
}| textarea |
| Nein |
| — |
| length | number | Ja | — |
HTML-Ergebnis
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Fragen oder Probleme? Kontakt: [email protected]