← Utvecklarverktyg

Hasha alla algoritmer

GET /hash/all

Generate hashes of an input string med hjälp av ALL stödda algoritmer på en gång (MD5, SHA-1, SHA-256, SHA-384, SHA-512). Returnerar all five hashes in a single response. Användbart för comparing algorithm outputs or att generera flera checksums simultaneously.

Parametrar

input obligatorisk

String to hash

Exempelförfrågningar

Grundläggande användning
curl "https://nordapi.ee/api/v1/hash/all?input=hello+world"
Hash a simple string
curl "https://nordapi.ee/api/v1/hash/all?input=hello+world"
Hash an email address
curl "https://nordapi.ee/api/v1/hash/all?input=user@example.com"

Livesvar

{
  "data": {
    "hashes": {
      "md5": "5eb63bbbe01eeed093cb22bb8f5acdc3",
      "sha1": "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed",
      "sha256": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9",
      "sha384": "fdbd8e75a67f29f701a4e040385e2e23986303ea10239211af907fcbb83578b3e417cb71ce646efd0819dd8c088de1bd",
      "sha512": "309ecc489c12d6eb4cc40f50c902f2b4d0ed77ee511a7c7a9bcd3ca86d4cd86f989dd35bc5ff499670da34255b45b0cfd830e81f605dcf7dc5542e93ae9cd76f"
    },
    "input": "hello world"
  },
  "success": true
}