volga_ctf_2022/check_system/src/aesthetic/external.py
nihonium 8e1b388a9e
nya
2023-01-16 17:11:32 +03:00

7 lines
198 B
Python

# -*- coding: utf-8 -*-
from random import choice
from string import ascii_letters, digits
def get_random_message(size=16):
return ''.join(choice(ascii_letters + digits) for _ in range(size))