- its just a simple password manager using python.
- it provides some basic key based encryption using fernet with strong 2^256 key
-
-
windows:
-
for linux:
# debian/ubuntu or other debian based linux apt sudo apt install python3 # arch and other arch based distros sudo pacman -Sy python # gentoo portage sudo emerge -v python
-
-
# creates a virtual environment python -m venv .venv # activate on linux source .venv/bin/activate # activate on pwsh/windows cd .venv\Scripts\; .\activate.ps1 ; cd ..\.. # Finally install the required dependencies pip install -r requirements.txt
-
run for windows 11/10:
# creates a virtual environment python -m venv .venv # activate on pwsh/windows cd .venv\Scripts\; .\activate.ps1 ; cd ..\.. # Finally install the required dependencies pip install -r requirements.txt
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned- what if i lost my keyfile?
- too bad lol. no really:
- what if someone stole my key? how do i protect it?
- it can't be stolen when no one uses your pc/laptop, unless it is hacked.
- also to protect your key file. store it on external storage or on protected folders
- is there some recovery methods here?
- nope.
- where's the keyfile?
- its on the same working dir and it is named key.key