A command line password manager
Here you can download x86_64 binaries
There are two optional command line arguments that you can use.
Use of these arguments skips the start menu.
-n <filename> creates a new password database
-o <filename> opens an existing password database
Clone the repository using git clone --recurse-submodules
- To compile, run
$ make - On Linux, to install, run
# make install - On Linux, to launch the installed program, run
$ PasswordManager
Requirements
g++glibc-devel-static
mkdir build
cd build
cmake ..
makeRequirements
glibc-devel-static
- Launch Visual Studio and open the
cryptlib.vcxprojproject located inside thelib\cryptoppdirectory - Go to
Build->Batch Build... - For the project
cryptlibselect theReleaseconfiguration and build it - Launch Visual Studio and open the
PasswordManager.slnsolution located in the main directory - Select the
Releaseconfiguration and build it
Password databases are encrypted with AES-256-CBC.
Key derivation function is PKCS5 PBKDF2 HMAC with SHA3-256 hashing.
This software is provided under the terms of the GNU General Public License v3.0.