tools/encode/hash generator
// encodenew

hash generator

sha-1, sha-256, sha-384, sha-512 via web crypto

// hash · webcrypto api — paste text to hash
sha-1
sha-256
sha-384
sha-512
curl -sX POST 'https://api.whittly.dev/v1/hash' \
  -H 'Authorization: Bearer $WHITTLY_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"input":"hello world","algorithm":"sha256"}'
const res = await fetch('https://api.whittly.dev/v1/hash', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer ' + apiKey,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({ input: "hello world", algorithm: "sha256" }),
});
const data = await res.json();
const { data } = await axios.post(
  'https://api.whittly.dev/v1/hash',
  { input: "hello world", algorithm: "sha256" },
  { headers: { Authorization: 'Bearer ' + apiKey } }
);
// probulk file hashingpro·files over 100 MBproupgrade →
// history
Pro Cloud Sync — upgrade
no operations yet