blob: 0ef6796489ba58f7ea24282b8cfe478e1e6e001d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/** --------------------------------------------------------------------
* @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 <string>
#include "depot.h"
namespace Binc {
int authenticate(Depot &, const std::string &username,
const std::string &password, const std::string &challenge);
}
#endif
|