From fddc395d430b724b3de3310bdc583e90a3c8c7a0 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Mon, 27 May 2019 16:03:36 -0400 Subject: [PATCH] forgot to commit this file --- irctest/irc_utils/sasl.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 irctest/irc_utils/sasl.py diff --git a/irctest/irc_utils/sasl.py b/irctest/irc_utils/sasl.py new file mode 100644 index 0000000..8bf075c --- /dev/null +++ b/irctest/irc_utils/sasl.py @@ -0,0 +1,6 @@ +import base64 + +def sasl_plain_blob(username, passphrase): + blob = base64.b64encode(b'\x00'.join((username.encode('utf-8'), username.encode('utf-8'), passphrase.encode('utf-8')))) + blobstr = blob.decode('ascii') + return f'AUTHENTICATE {blobstr}'