2019-01-06 14:05:05 +01:00
|
|
|
#!/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
|
|
|
|
|
2021-03-21 19:49:01 +01:00
|
|
|
pwgen 32 -y
|