Class: SASL::Plain
Overview
RFC 4616: tools.ietf.org/html/rfc4616
Instance Attribute Summary
Attributes inherited from Mechanism
Instance Method Summary collapse
Methods inherited from Mechanism
#failure?, #initialize, #receive, #success?
Constructor Details
This class inherits a constructor from SASL::Mechanism
Instance Method Details
#start ⇒ Object
6 7 8 9 10 11 12 |
# File 'lib/sasl/plain.rb', line 6 def start @state = nil = [preferences.authzid.to_s, preferences.username, preferences.password].join("\000") ['auth', ] end |