blob: bb24af71e3a766015df944c4a890d4bcb0b2a423 (
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();
virtual bool setChallenge(const ByteArray&);
};
}
|