(chars_incl: str, i: int)
| 48 | |
| 49 | |
| 50 | def random(chars_incl: str, i: int) -> str: |
| 51 | return "".join(secrets.choice(chars_incl) for _ in range(i)) |
| 52 | |
| 53 | |
| 54 | def is_strong_password(password: str, min_length: int = 8) -> bool: |
no outgoing calls
no test coverage detected