← Utilitaires pour développeurs

Calculer un hachage

GET /hash

Générez un hachage cryptographique of tout input string en utilisant your choice of algorithm. Prend en charge MD5, SHA-1, SHA-256, SHA-384, et SHA-512. Utile pour les checksum verification, data integrity checks, et development testing. Computed locally avec zero external dependencies.

Paramètres

input requis

String to hash

algorithme optionnel par défaut: sha256

Algorithm: md5, sha1, sha256, sha384, sha512

Exemples de requêtes

Utilisation de base
curl "https://nordapi.ee/api/v1/hash?input=hello+world&algorithm=sha256"
SHA-256 hash
curl "https://nordapi.ee/api/v1/hash?input=hello+world&algorithm=sha256"
MD5 hash
curl "https://nordapi.ee/api/v1/hash?input=test123&algorithm=md5"
SHA-512 hash
curl "https://nordapi.ee/api/v1/hash?input=my+secret+data&algorithm=sha512"

Réponse en direct

{
  "data": {
    "algorithm": "sha256",
    "hash": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9",
    "input": "hello world",
    "length": 64
  },
  "success": true
}