2014-01-31 07:22:11 +01:00
|
|
|
#ifndef RESEED_H
|
|
|
|
#define RESEED_H
|
|
|
|
|
2014-12-11 15:41:04 -05:00
|
|
|
#include <iostream>
|
2014-01-31 07:22:11 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-12-13 15:01:08 -05:00
|
|
|
#include <map>
|
|
|
|
#include "Identity.h"
|
2014-01-31 07:22:11 +01:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
|
|
|
|
class Reseeder
|
|
|
|
{
|
2014-12-13 15:01:08 -05:00
|
|
|
typedef Tag<512> PublicKey;
|
|
|
|
|
2014-01-31 07:22:11 +01:00
|
|
|
public:
|
2014-12-11 15:41:04 -05:00
|
|
|
|
2014-01-31 07:22:11 +01:00
|
|
|
Reseeder();
|
|
|
|
~Reseeder();
|
2014-12-11 15:41:04 -05:00
|
|
|
bool reseedNow(); // depreacted
|
|
|
|
int ReseedNowSU3 ();
|
2014-12-12 15:45:39 -05:00
|
|
|
|
2014-12-13 18:35:53 -05:00
|
|
|
void LoadCertificates ();
|
2014-12-11 15:41:04 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-12-13 18:35:53 -05:00
|
|
|
void LoadCertificate (const std::string& filename);
|
|
|
|
|
2014-12-11 15:41:04 -05:00
|
|
|
int ReseedFromSU3 (const std::string& host);
|
2014-12-12 10:34:50 -05:00
|
|
|
int ProcessSU3File (const char * filename);
|
|
|
|
int ProcessSU3Stream (std::istream& s);
|
2014-12-12 13:36:02 -05:00
|
|
|
|
|
|
|
bool FindZipDataDescriptor (std::istream& s);
|
2014-12-13 15:01:08 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
std::map<std::string, PublicKey> m_SigningKeys;
|
2014-01-31 07:22:11 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 14:29:22 -05:00
|
|
|
#endif
|