|
|
|
|
|
by amelius
3659 days ago
|
|
I'm hashing my passwords. For example, when logging into any google service, I use: echo "secret123|google" | sha1sum
where "secret123" is my master password (I use a much longer one actually to be safe). Similarly, on facebook, I woudl use: echo "secret123|facebook" | sha1sum
To both passwords, I add "Aa1!" to make it pass the capital/lowercase etc. tests.EDIT: it is best to write a script for this |
|
Can somebody with sense please explain if this is a good or bad idea?