10 lines
312 B
Bash
Executable file
10 lines
312 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Generate strong enough password(s)
|
|
|
|
# This generates a password with ln((26*2+10)**32)/ln(2) ≅ 190 bits of entropy,
|
|
# which is a bit above the recommended standars (128 bits) while still having
|
|
# a 0 probability that the service will break because of incompatible character
|
|
|
|
pwgen 32 -y
|