← Utilidades para desarrolladores

Hash con todos los algoritmos

GET /hash/all

Genere hashes of an input string using ALL supported algorithms at once (MD5, SHA-1, SHA-256, SHA-384, SHA-512). Devuelve all five hashes en una sola respuesta. Útil para comparing algorithm outputs or generating multiple checksums simultaneously.

Parametros

input requerido

String to hash

Ejemplos de solicitudes

Uso basico
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"

Respuesta en vivo

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