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