From efd5c81ca00136d3a673d99e699f16d050fcfaa6 Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 22 May 2023 21:07:57 +0200 Subject: Introduce new xmpp/sasl.go --- xmpp/routing.go | 44 -------------------------------------------- 1 file changed, 44 deletions(-) (limited to 'xmpp/routing.go') diff --git a/xmpp/routing.go b/xmpp/routing.go index 23f92bb..48c9763 100644 --- a/xmpp/routing.go +++ b/xmpp/routing.go @@ -2,7 +2,6 @@ package xmpp import ( "encoding/xml" - "encoding/base64" "errors" "log" ) @@ -101,46 +100,3 @@ func streamFeatures(b []xml.Token, c *Conn) error { return nil } - -func sendSaslAuth(b []xml.Token, c *Conn) error { - mechanisms := make([]string, 0) - for i, v := range(b) { - switch token := v.(type) { - case xml.StartElement: - expected := xml.Name{"urn:ietf:params:xml:ns:xmpp-sasl", "mechanism"} - if token.Name == expected { - if i >= (len(b)-1) { continue } - switch payload := b[i+1].(type) { - case xml.CharData: - mechanisms = append(mechanisms, string(payload)) - } - } - } - } - - for _, v := range(mechanisms) { - if v == "PLAIN" { - start := xml.StartElement{ - xml.Name{"urn:ietf:params:xml:ns:xmpp-sasl", "auth"}, - []xml.Attr{ - xml.Attr{xml.Name{"", "mechanism"}, "PLAIN"}, - }, - } - - data := []byte("\x00" + username(c.jid) + "\x00" + c.pwd) - dst := make([]byte, base64.StdEncoding.EncodedLen(len(data))) - base64.StdEncoding.Encode(dst, data) - payload := xml.CharData(dst) - - end := start.End() - - c.enc.encodeNow(start) - c.enc.encode(payload) - c.enc.encodeNow(end) - - return nil - } - } - - return errors.New("No compatible SASL mechanism given") -} -- cgit v1.2.3-70-g09d2