blob: e03fcf0091859a3ee45126d6be4f24a088297b52 (
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
|
/*
* EGD EntropySource
* (C) 1999-2007 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_ENTROPY_SRC_EGD_H__
#define BOTAN_ENTROPY_SRC_EGD_H__
#include <botan/entropy_src.h>
#include <string>
#include <vector>
#include <mutex>
namespace Botan {
/**
* EGD Entropy Source
*/
class EGD_EntropySource : public Entropy_Source
{
public:
std::string name() const override { return "egd"; }
void poll(Entropy_Accumulator& accum) override;
EGD_EntropySource(const std::vector<std::string>&);
~EGD_EntropySource();
private:
class EGD_Socket
{
public:
EGD_Socket(const std::string& path);
void close();
size_t read(byte outbuf[], size_t length);
private:
static int open_socket(const std::string& path);
std::string m_socket_path;
int m_fd; // cached fd
};
std::mutex m_mutex;
std::vector<EGD_Socket> m_sockets;
};
}
#endif
|