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.
用 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 文件。