authentik.providers.saml.utils
Small helper functions
def
get_random_id() -> str:
7def get_random_id() -> str: 8 """Random hex id""" 9 # It is very important that these random IDs NOT start with a number. 10 random_id = "_" + uuid.uuid4().hex 11 return random_id
Random hex id