/** -------------------------------------------------------------------- * @file authenticate.h * @brief Declaration of the common authentication mechanism. * @author Andreas Aardal Hanssen, Erwin Hoffmann * @date 2002-2005, 2023 * ----------------------------------------------------------------- **/ #ifndef authenticate_h_included #define authenticate_h_included #include #include "depot.h" namespace Binc { int authenticate(Depot &, const std::string &username, const std::string &password, const std::string &challenge); } #endif