Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new feature SASL SCRAM #1706

Open
wants to merge 14 commits into
base: develop
Choose a base branch
from
Open
8 changes: 7 additions & 1 deletion eggdrop.conf
Original file line number Diff line number Diff line change
Expand Up @@ -1113,12 +1113,18 @@ server add ssl.example.net +7000
# 1 = ECDSA-NIST256P-CHALLENGE (Uses a certificate; usually requires a
# public key to be registered with NickServ
# or other similar service. Set certificate
# to use in sasl-ecdsa-key setting below)
# to use in sasl-ecdsa-key setting below.
# Beware: NIST curve could be backdoored,
# so please use EXTERNAL or SCRAM instead.)
#
# 2 = EXTERNAL (Some other method you set up. Certificates
# used are defined in ssl-certificate and
# ssl-privatekey settings in SSL section)
#
# 3 = SCRAM-SHA-256
#
# 4 = SCRAM-SHA-512
#
#set sasl-mechanism 0

# Set username to authenticate to IRC NickServ with
Expand Down
4 changes: 2 additions & 2 deletions src/mod/server.mod/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ distclean: clean
.././server.mod/server.h .././server.mod/isupport.c \
.././server.mod/tclisupport.c .././server.mod/servmsg.c \
.././server.mod/../irc.mod/irc.h \
.././server.mod/../channels.mod/channels.h .././server.mod/cmdsserv.c \
.././server.mod/tclserv.c
.././server.mod/../channels.mod/channels.h .././server.mod/sasl.c \
.././server.mod/cmdsserv.c .././server.mod/tclserv.c
Loading
Loading