Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elfenware/obliviate-web
A password manager that forgets your passwords
https://github.com/elfenware/obliviate-web
hacktoberfest manager passphrase password security svelte
Last synced: 1 day ago
JSON representation
A password manager that forgets your passwords
- Host: GitHub
- URL: https://github.com/elfenware/obliviate-web
- Owner: elfenware
- License: gpl-3.0
- Created: 2020-12-13T17:33:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-29T16:43:28.000Z (over 2 years ago)
- Last Synced: 2023-03-02T15:46:10.529Z (over 1 year ago)
- Topics: hacktoberfest, manager, passphrase, password, security, svelte
- Language: Svelte
- Homepage: https://obliviate.app/
- Size: 109 KB
- Stars: 12
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Obliviate
A password manager that forgets your passwords
## Description
Obliviate does not store your passwords, but gives them to you when you need them. How?
It asks you for two things:
- the site you want to log in to
- a cipher key, which is any passphrase you can rememberUsing these, it will derive a password, which you can set as your new password for that site.
The next time you need it, enter the same site and same cipher key. Obliviate will derive the same password as before.
It’s not magic, but it’s quite close.
## Developing and building
Once you have Node.js installed, clone this repository, then run
```shell
npm install
```Every time you want to run the development server, run
```shell
npm run dev
```## Credits
- [dotcypress/password](https://github.com/dotcypress/password) for the original idea