Security
Показывает каждый шаг HMAC в HKDF Extract+Expand для вывода ключей, включая PRK, T(n) и OKM.
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/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}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/sp800-56c-hkdf-extract-and-expand-walkthrough| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| preset | select | Нет | — |
| hash | select | Нет | — |
| encoding | select | Нет | — |
| ikm | textarea | Нет | — |
| salt | textarea | Нет | — |
| info |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-sp800-56c-hkdf-extract-and-expand-walkthrough": {
"name": "sp800-56c-hkdf-extract-and-expand-walkthrough",
"description": "Показывает каждый шаг HMAC в HKDF Extract+Expand для вывода ключей, включая PRK, T(n) и OKM.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sp800-56c-hkdf-extract-and-expand-walkthrough",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"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 |
| Нет |
| — |
| length | number | Да | — |
HTML-результат
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Вопросы или проблемы? Свяжитесь с [email protected]