Issue: [B311:blacklist] Standard pseudo-random generators are not suitable for security/cryptographic purposes. - Severity: Low - Confidence: High - Location: mtls/mtls.py:448 - More Info: https://bandit.readthedocs.io/en/latest/blacklists/blacklist_calls.html#b311-random ``` 447 for c in range(10): 448 pw.append(random.choice(wordList)) 449 return " ".join(pw).rstrip() ```