https://github.com/playercatboy/apii-passwordmanager
Save your password securely (salt+md5) at local. Verify the password if you want. Implemented in bash script.
https://github.com/playercatboy/apii-passwordmanager
bash md5-hash password salt script shell
Last synced: 26 days ago
JSON representation
Save your password securely (salt+md5) at local. Verify the password if you want. Implemented in bash script.
- Host: GitHub
- URL: https://github.com/playercatboy/apii-passwordmanager
- Owner: playercatboy
- License: gpl-3.0
- Archived: true
- Created: 2019-09-01T14:41:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-09-01T15:01:12.000Z (about 6 years ago)
- Last Synced: 2025-08-24T00:38:12.767Z (about 2 months ago)
- Topics: bash, md5-hash, password, salt, script, shell
- Language: Shell
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# APiI Password Manager
This is a tiny bash script that can hash your password and save it locally. It can also verify the password.### Why make this?
This file aims to provide a secure password management for project [APiI](https://github.com/Catboy96/APiI).
APiI is a simple WebAPI that runs on a Raspberry Pi and use bash script as CGI.
For the performance concern, the password management:
* NO DEPENDENCIES!
* Must be implemented by the programs already installed.
* Must be effective and secure.### Usage
#### Interactively
* To set the password: `bash pwmgr.sh -s`
* To verify: `bash pwmgr.sh -v`
#### Uninteractively
* To set the password: `bash pwmgr.sh -s <<< "PASSWORD"`
* To verify: `bash pwmgr.sh -v <<< "PASSWORD"`