59 lines
2 KiB
HTML
59 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="description" content="A simple web-app to generate bcrypt and SHA512-crypt hashes">
|
|
<title>Password Hash Self-Service</title>
|
|
<link rel="css" href="style.css" data-trunk>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Password Hash Self-Service</h1>
|
|
|
|
<form id="hash-setup" autocomplete="off">
|
|
<label for="password">
|
|
Password
|
|
<input name="password" type="password"></input><br>
|
|
</label>
|
|
|
|
<label for="hash-type">
|
|
Hash Type
|
|
<input name="hash-type" type="radio" value="bcrypt" checked>bcrypt</input>
|
|
<input name="hash-type" type="radio" value="sha512crypt">SHA512-crypt</input><br>
|
|
</label>
|
|
|
|
<details>
|
|
<summary>Advanced options</summary>
|
|
<label for="bcrypt-cost">
|
|
bcrpyt cost factor
|
|
<input name="bcrypt-cost" type="number" value="12" min="4" max="31"></input><br>
|
|
</label>
|
|
<label for="sha512crypt-rounds">
|
|
SHA512-crypt rounds
|
|
<input name="sha512crypt-rounds" type="number" value="100000" min="1000" max="999999999"></input><br>
|
|
</label>
|
|
</details>
|
|
|
|
<button type="button" id="generate">Generate</button>
|
|
</form>
|
|
|
|
<div id="hash-container"><span id="hash"></span></div>
|
|
|
|
<footer>
|
|
<p>
|
|
The hash is calculated in your browser
|
|
and never leaves your device.
|
|
</p>
|
|
<p>
|
|
This application is free software, released under the <a href="https://www.gnu.org/licenses/agpl-3.0.en.html"><code>AGPLv3</code></a>
|
|
(<a href="https://git.sbruder.de/simon/password-hash-self-service">Source code</a>).
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
|
|
<link data-trunk rel="rust" href="Cargo.toml" data-wasm-opt="z"/>
|
|
<script src="app.js" data-trunk></script>
|
|
</body>
|
|
</html>
|