This is a tiny bash script that can hash your password and save it locally. It can also verify the password.
This file aims to provide a secure password management for project 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.
- To set the password:
bash pwmgr.sh -s
- To verify:
bash pwmgr.sh -v
- To set the password:
bash pwmgr.sh -s <<< "PASSWORD"
- To verify:
bash pwmgr.sh -v <<< "PASSWORD"