lib: improve probability of symbols in generated key

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-11-23 23:01:30 +01:00
parent 2b94e9a687
commit 0e3602d7eb
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ def generate_key(length=128):
"""Generate a suitable client secret"""
rand = SystemRandom()
return "".join(
rand.choice(string.ascii_letters + string.digits + string.punctuation)
rand.choice(string.ascii_letters + string.digits + string.punctuation + string.punctuation)
for x in range(length)
)