1 2 3 4 5 6 7 8 9 10 11 12 13
#pragma once #include "Swiften/SASL/ClientAuthenticator.h" namespace Swift { class PLAINClientAuthenticator : public ClientAuthenticator { public: PLAINClientAuthenticator(); virtual ByteArray getResponse() const; virtual bool setChallenge(const ByteArray&); }; }