blob: b3f68e9514386337c4ac2fa3a2fe51f56cde879d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @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
|