Security & Crypto API

Compute SHA-256 and HMAC-SHA256 hashes, and generate SSH key fingerprints for provisioning, auditing, and secure workflows.

Included endpoints


Example: HMAC-SHA256

curl --request POST \
  --url https://hefftools.dev/api/v1/hash/hmac-sha256 \
  --header 'Content-Type: application/json' \
  --header 'X-RapidAPI-Key: <your-rapidapi-key>' \
  --data '{
    "message": "data to sign",
    "secret": "mysecret"
  }'

Response (example):

{
  "algorithm": "hmac-sha256",
  "hex_digest": "ae1b3c..."
}

Use cases