diff options
Diffstat (limited to 'Swiften/SASL/SCRAMSHA1ClientAuthenticator.h')
-rw-r--r-- | Swiften/SASL/SCRAMSHA1ClientAuthenticator.h | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h index bc9bd97..5dc169a 100644 --- a/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h +++ b/Swiften/SASL/SCRAMSHA1ClientAuthenticator.h @@ -16,40 +16,40 @@ #include <Swiften/SASL/ClientAuthenticator.h> namespace Swift { - class IDNConverter; - class CryptoProvider; - - class SWIFTEN_API SCRAMSHA1ClientAuthenticator : public ClientAuthenticator { - public: - SCRAMSHA1ClientAuthenticator(const std::string& nonce, bool useChannelBinding, IDNConverter*, CryptoProvider*); - - void setTLSChannelBindingData(const ByteArray& channelBindingData); - - virtual boost::optional<SafeByteArray> getResponse() const; - virtual bool setChallenge(const boost::optional<ByteArray>&); - - private: - ByteArray getInitialBareClientMessage() const; - ByteArray getGS2Header() const; - ByteArray getFinalMessageWithoutProof() const; - - static std::map<char, std::string> parseMap(const std::string&); - - private: - enum Step { - Initial, - Proof, - Final - } step; - std::string clientnonce; - ByteArray initialServerMessage; - ByteArray serverNonce; - ByteArray authMessage; - ByteArray saltedPassword; - ByteArray serverSignature; - bool useChannelBinding; - IDNConverter* idnConverter; - CryptoProvider* crypto; - boost::optional<ByteArray> tlsChannelBindingData; - }; + class IDNConverter; + class CryptoProvider; + + class SWIFTEN_API SCRAMSHA1ClientAuthenticator : public ClientAuthenticator { + public: + SCRAMSHA1ClientAuthenticator(const std::string& nonce, bool useChannelBinding, IDNConverter*, CryptoProvider*); + + void setTLSChannelBindingData(const ByteArray& channelBindingData); + + virtual boost::optional<SafeByteArray> getResponse() const; + virtual bool setChallenge(const boost::optional<ByteArray>&); + + private: + ByteArray getInitialBareClientMessage() const; + ByteArray getGS2Header() const; + ByteArray getFinalMessageWithoutProof() const; + + static std::map<char, std::string> parseMap(const std::string&); + + private: + enum Step { + Initial, + Proof, + Final + } step; + std::string clientnonce; + ByteArray initialServerMessage; + ByteArray serverNonce; + ByteArray authMessage; + ByteArray saltedPassword; + ByteArray serverSignature; + bool useChannelBinding; + IDNConverter* idnConverter; + CryptoProvider* crypto; + boost::optional<ByteArray> tlsChannelBindingData; + }; } |