diff options
author | Michael Czigler <37268479+mcpcpc@users.noreply.github.com> | 2020-09-22 15:55:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-22 15:55:33 -0400 |
commit | 2a812247e04744d2ac642d12ae2f37f8a6d34b6d (patch) | |
tree | 0f8746047076aeb7319cbe00b3a8e240b95e1a4c /README.md | |
parent | Merge pull request #31 from mcpcpc/sasl-support (diff) | |
download | kirc-2a812247e04744d2ac642d12ae2f37f8a6d34b6d.tar.gz kirc-2a812247e04744d2ac642d12ae2f37f8a6d34b6d.tar.bz2 kirc-2a812247e04744d2ac642d12ae2f37f8a6d34b6d.tar.xz kirc-2a812247e04744d2ac642d12ae2f37f8a6d34b6d.tar.zst kirc-2a812247e04744d2ac642d12ae2f37f8a6d34b6d.zip |
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -99,9 +99,9 @@ socat tcp-listen:6667,reuseaddr,fork,bind=127.0.0.1 ssl:<irc-server>:6697 kirc -s 127.0.0.1 -c 'channel' -n 'name' -r 'realname' ``` -## SASL Plain Support +## SASL Support -In order to connect using SASL authentication, the user must provide the required token during the initial connection. If the authentication token is base64 encoded and, therefore, can be generated a number of ways. For example, using Python, one could use the following: +In order to connect using SASL PLAIN authentication, the user must provide the required token during the initial connection. If the authentication token is base64 encoded and, therefore, can be generated a number of ways. For example, using Python, one could use the following: ```shell python -c 'import base64; print(base64.encodebytes(b"nick\x00nick\x00password"))' |