import base64

username = input("Benutzername: ")
password = input("Passwort: ")

auth_byte = bytearray("\0" + username + "\0" + password, 'ascii')
auth_b64 = base64.b64encode(auth_byte)

print ("\nBefehl: AUTH PLAIN " + auth_b64.decode())
