Security
Show each HMAC step of HKDF Extract+Expand for protocol key derivation, including PRK, T(n), and OKM.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/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}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/sp800-56c-hkdf-extract-and-expand-walkthrough| Name | Type | Required | Description |
|---|---|---|---|
| preset | select | No | — |
| hash | select | No | — |
| encoding | select | No | — |
| ikm | textarea | No | — |
| salt | textarea | No | — |
| info |
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-sp800-56c-hkdf-extract-and-expand-walkthrough": {
"name": "sp800-56c-hkdf-extract-and-expand-walkthrough",
"description": "Show each HMAC step of HKDF Extract+Expand for protocol key derivation, including PRK, T(n), and OKM.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sp800-56c-hkdf-extract-and-expand-walkthrough",
"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": "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 |
| No |
| — |
| length | number | Yes | — |
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]