Skip to content
This repository has been archived by the owner on Sep 20, 2020. It is now read-only.
/ Passwordmanager Public archive

A simple passwordmanager web-app

License

Notifications You must be signed in to change notification settings

m-thalmann/Passwordmanager

Repository files navigation

Passwordmanager

This passwordmanager is a progressive-web-app (PWA). It is able to store your passwords (safely) on a database or only on your local device.

Warning: This repository is not maintained any more!

Used sources

How are my passwords stored?

Each password has a encryption-key, whitch is used to decrypt the data. The key itself is encrypted with your master-password through the blowfish algorithm. After decrypting the encryption-key, it is used, again through the blowfish algorithm, to decrypt the password-data.

Database / API

A sample database/api implementation is provided here: https://github.com/m-thalmann/PasswordmanagerAPI
You can either use it directly or implement one on your own.

Using this repository

First of all you have to clone this repository. You will need to have nodejs and npm installed for the next command.

npm install -g @angular/cli   # install the angular-cli globally
npm install                   # this will install all of the dependencies

Then you can run the development server:

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.