blob: a3b979b8786c5fb67b84b86907a05bb4996331d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
/*
* SRP-6a File Handling
* (C) 2011 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_SRP6A_FILES_H__
#define BOTAN_SRP6A_FILES_H__
#include <botan/bigint.h>
#include <string>
#include <map>
namespace Botan {
/**
* A GnuTLS compatible SRP6 authenticator file
*/
class BOTAN_DLL SRP6_Authenticator_File
{
public:
/**
* @param filename will be opened and processed as a SRP
* authenticator file
*/
SRP6_Authenticator_File(const std::string& filename);
bool lookup_user(const std::string& username,
BigInt& v,
std::vector<byte>& salt,
std::string& group_id) const;
private:
struct SRP6_Data
{
SRP6_Data() {}
SRP6_Data(const BigInt& v,
const std::vector<byte>& salt,
const std::string& group_id) :
v(v), salt(salt), group_id(group_id) {}
// public member variable:
BigInt v;
// public member variable:
std::vector<byte> salt;
// public member variable:
std::string group_id;
};
std::map<std::string, SRP6_Data> m_entries;
};
}
#endif
|