|
|
|
|
|
by jmclnx
127 days ago
|
|
FWIW, you can generate your own random PW on any UN*X Type system, I think on MACs also: For example: tr -cd "[:alnum:]" < /dev/urandom | fold -w 20 | sed 10q Change "alnum" to "print" to get other characters. This will generate 10 20 characters passwords. |
|