Save all my passwords anywhere I like with AES256.
- Edit "mypassword.sh" file, replace "passSalt" and "passPath";
sudo ln -s mypassword.sh /usr/local/bin/mypassword
;mypassword
, input "PWD" (Master password should to remember);- Input "W" to add a new password or input the name of the password you had added;
- Get your password;
openssl
Only you know your master password, so only you can access your information in your encrypted vault - not even mypassword can. All of your data is sealed with AES-256 bit encryption, salted hashing.
mypassword is provided under the MIT license. See LICENSE file for details.
2017-01-24 v0.2.0 add remove password; show all password; change PWD; check PWD; !ATTENTION!: update v0.1.0 to v0.2.0, you need add the postfix ".pwd" to your password file.
用 AES256 加密方式保存你的密码,并安全存放到你想放的任何地方。
- 编辑 “mypassword.sh” 文件, 替换变量 “passSalt” 和 “passPath”;
sudo ln -s mypassword.sh /usr/local/bin/mypassword
;mypassword
, 输入 “PWD” (要牢牢记住这个主密码,这是开启所以密码的钥匙);- 输入 “W” 来创建新密码或者输入你已经创建过的密码名称;
- 获得密码明文;
openssl
只有你自己知道主密码是什么,所以只有你能解开密码库里的密码。 然后你可以把加密后的文件存到 iCloud 或者 github 或者其他的什么地方都可以咯! “mypassword” 程序只能接触到通过AES256加密后的字符串,不信你自己去看源码好了。
mypassword 使用 MIT 许可协议,详情见 LICENSE 文件。
2017-01-24 v0.2.0 增加删除密码; 显示全部密码; 修改主密码; 检查主密码; !注意!: 从 v0.1.0 升级到 v0.2.0, 需要给之前的密码文件添加后缀".pwd"。