/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include #include #include namespace Swift { class SWIFTEN_API DIGESTMD5ClientAuthenticator : public ClientAuthenticator { public: DIGESTMD5ClientAuthenticator(const std::string& host, const std::string& nonce); virtual boost::optional getResponse() const; virtual bool setChallenge(const boost::optional >&); static bool canBeUsed(); private: enum Step { Initial, Response, Final, } step; std::string host; std::string cnonce; DIGESTMD5Properties challenge; }; }