password-hash-self-service/app.js

71 lines
2.0 KiB
JavaScript

import init, { hash_bcrypt, hash_sha512crypt } from "./backend/pkg/password_hash_self_service_backend.js"
function displayHash(hash) {
document.getElementById("hash").innerText = hash
document.getElementById("hash-container").classList.add("done")
}
function getHashSetup(formData) {
let setup = {
password: formData.get("password"),
hashType: formData.get("hash-type"),
privateOptions: {},
}
switch (setup.hashType) {
case "bcrypt":
setup.privateOptions.cost = formData.get("bcrypt-cost")
break
case "sha512crypt":
setup.privateOptions.rounds = formData.get("sha512crypt-rounds")
break
default:
console.warn("Unknown hash type " + setup.hashType + ", not setting private options")
}
return setup
}
// Returns function that accepts two arguments: a password and an object of
// private options for the hasher.
function getHasher(hashType) {
switch (hashType) {
case "bcrypt":
return (password, { cost }) => hash_bcrypt(password, cost)
case "sha512crypt":
return (password, { rounds }) => hash_sha512crypt(password, rounds)
default:
throw Error("Invalid hash type specified: " + hashType)
}
}
(async () => {
await init()
document.getElementById("advanced-options").addEventListener("change", e => {
if (e.target.checked) {
document.body.classList.add("advanced")
} else {
document.body.classList.remove("advanced")
}
})
document.getElementById("generate").addEventListener("click", e => {
e.target.disabled = true
const buttonText = e.target.innerText
e.target.innerText = "Calculating hash…"
const formData = new FormData(document.getElementById("hash-setup"))
const hashSetup = getHashSetup(formData)
console.debug("Hash type:", hashSetup.hashType, "Private options:", hashSetup.privateOptions)
const hasher = getHasher(hashSetup.hashType)
displayHash(hasher(hashSetup.password, hashSetup.privateOptions))
e.target.innerText = buttonText
e.target.disabled = false
})
})()