class SASL::Plain
RFC 4616: tools.ietf.org/html/rfc4616
Public Instance Methods
start()
click to toggle source
# File lib/sasl/plain.rb, line 6 def start @state = nil message = [preferences.authzid.to_s, preferences.username, preferences.password].join("\000") ['auth', message] end