GET /hash
Generieren Sie eine cryptographic hash of any input string using your choice of algorithm. Unterstützt MD5, SHA-1, SHA-256, SHA-384, und SHA-512. Nützlich für checksum verification, data integrity checks, und development testing. Computed locally with zero external dependencies.
input
erforderlich
String to hash
Algorithmus
optional
Standard: sha256
Algorithm: md5, sha1, sha256, sha384, sha512
| Name | Erforderlich | Standard | Beschreibung |
|---|---|---|---|
input |
Ja | - | String to hash |
Algorithmus |
Nein | sha256 | Algorithm: md5, sha1, sha256, sha384, sha512 |
curl "https://nordapi.ee/api/v1/hash?input=hello+world&algorithm=sha256"
curl "https://nordapi.ee/api/v1/hash?input=hello+world&algorithm=sha256"
curl "https://nordapi.ee/api/v1/hash?input=test123&algorithm=md5"
curl "https://nordapi.ee/api/v1/hash?input=my+secret+data&algorithm=sha512"
{
"data": {
"algorithm": "sha256",
"hash": "b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9",
"input": "hello world",
"length": 64
},
"success": true
}