blob: 854eb30112dd42a5620bc81f82b4639ea6e3693a (
plain)
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&);
};
}
|