Security
Affiche chaque étape HMAC de HKDF Extract+Expand pour la dérivation de clés, avec PRK, T(n) et OKM.
Appelez cet outil depuis votre code en trois langages.
curl -X POST 'https://api.elysiatools.com/fr/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}'Envoyez une requête POST avec vos entrées en JSON. Les paramètres de type fichier nécessitent un upload préalable.
POST https://api.elysiatools.com/fr/api/tools/sp800-56c-hkdf-extract-and-expand-walkthrough| Nom | Type | Requis | Description |
|---|---|---|---|
| preset | select | Non | — |
| hash | select | Non | — |
| encoding | select | Non | — |
| ikm | textarea | Non | — |
| salt | textarea | Non | — |
| info |
Ajoutez cet outil à votre serveur Model Context Protocol pour que les agents IA puissent le lister et l'appeler.
Ajoutez ce bloc à la configuration de votre client MCP :
{
"mcpServers": {
"elysiatools-sp800-56c-hkdf-extract-and-expand-walkthrough": {
"name": "sp800-56c-hkdf-extract-and-expand-walkthrough",
"description": "Affiche chaque étape HMAC de HKDF Extract+Expand pour la dérivation de clés, avec PRK, T(n) et OKM.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=sp800-56c-hkdf-extract-and-expand-walkthrough",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}Après connexion au point d'accès SSE, listez les outils exposés :
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Appelez l'outil par son id ; les arguments sont construits à partir de ses paramètres :
{
"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 |
| Non |
| — |
| length | number | Oui | — |
Résultat HTML
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}Des questions ou un problème ? Contactez [email protected]