# apm apm, argon password manager; a simple implementation of [pass](https://www.passwordstore.org/)(1) in C. It uses a unique key to encrypt every password, it provides functionality to edit, add, generate, show, list, remove passwords. It uses argon2 to create hash of master password and uses XSalsa20 to encrypt the password. > The name "argon" is chosen as it uses argon2 algorithm and sodium(library) is stored with argon. Before using apm, you must export 2 environment variables in order to make it work ```sh export APM_DIR=~/secret/apm export APM_KEY=~/secret/apm_key ``` `APM_DIR` is the directory where passwords are stored and `APM_KEY` is the path to the master key file. # Usage ``` Usage: apm [-vhL] [[-e | -R | -I | -Q] ] [-M ] [-G ] ``` # Dependencies - libsodium # Building You will need to run these with elevated privilages. ``` $ make # make install ``` # Contributions Contributions are welcomed, feel free to open a pull request. # License This project is licensed under the GNU Public License v3.0. See [LICENSE](https://github.com/night0721/apm/blob/master/LICENSE) for more information.