Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.07 KB

File metadata and controls

33 lines (23 loc) · 1.07 KB

htpasswd-generator

This project provides a web application which generates bcrypt hashed htpasswd entries.
The app uses hash algorithms implemented in JavaScript, so your password does not leave your browser. A web worker is used to delegate password hashing to another thread. This keeps the UI responsive while generating the hashed password entry.

bcryptjs is used for bcrypt, it's the recommended hashing algorithm.

App gets deployed to netlify:

https://htpasswd-generator.netlify.app/
Netlify Status

Project setup

git clone https://github.com/maxhellwig/htpasswd-generator.git
npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build