Skip to main content

Endpoints

Algorithms

  • argon2id
  • bcrypt

Verify Hash

fetch('https://himitsu.alaalba.com/hasher/make', {
method: 'POST',
body: JSON.stringify({
algorithm: 'argon2id',
raw: 'cristina@maressa'
})
})

Verify Hash

fetch('https://himitsu.alaalba.com/hasher/verify', {
method: 'POST',
body: JSON.stringify({
algorithm: 'argon2id',
raw: 'cristina@maressa',
hash: '$argon2id$v=19$m=65536,t=12,p=4$fJW/u5uMeBCHiNaLlpkDA7l9tQOJQTtQkSjoPRi10hcPnLBD8...'
})
})