// кодированиеnew

хэш-генератор

sha-1, sha-256, sha-384, sha-512

// hash · webcrypto api — вставьте текст
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 } }
);
// proхеширование пачкойpro·файлы больше 100 МБproподробнее →
// история
Pro Облачная синхронизация — подробнее
операций пока нет