HEX
Server: Apache
System: Linux beluga.o2switch.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: sc3naki1272 (1113)
PHP: 8.3.33
Disabled: NONE
Upload Files
File: //opt/alt/python27/lib/python2.7/site-packages/pyvirtualdisplay/xauth.py
'''Utility functions for xauth.'''
import os
import hashlib

import easyprocess


class NotFoundError(Exception):
    '''Error when xauth was not found.'''
    pass


def is_installed():
    '''
    Return whether or not xauth is installed.
    '''
    try:
        easyprocess.EasyProcess(['xauth', '-h']).check_installed()
    except easyprocess.EasyProcessCheckInstalledError:
        return False
    else:
        return True


def generate_mcookie():
    '''
    Generate a cookie string suitable for xauth.
    '''
    data = os.urandom(16)  # 16 bytes = 128 bit
    return hashlib.md5(data).hexdigest()


def call(*args):
    '''
    Call xauth with the given args.
    '''
    easyprocess.EasyProcess(['xauth'] + list(args)).call()