2014-01-31 06:22:11 +00:00
|
|
|
#ifndef RESEED_H
|
|
|
|
#define RESEED_H
|
|
|
|
|
2014-12-11 20:41:04 +00:00
|
|
|
#include <iostream>
|
2014-01-31 06:22:11 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-12-13 20:01:08 +00:00
|
|
|
#include <map>
|
|
|
|
#include "Identity.h"
|
2015-11-03 14:15:49 +00:00
|
|
|
#include "Crypto.h"
|
2014-01-31 06:22:11 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
|
|
|
|
class Reseeder
|
|
|
|
{
|
2014-12-13 20:01:08 +00:00
|
|
|
typedef Tag<512> PublicKey;
|
|
|
|
|
2014-01-31 06:22:11 +00:00
|
|
|
public:
|
2014-12-11 20:41:04 +00:00
|
|
|
|
2014-01-31 06:22:11 +00:00
|
|
|
Reseeder();
|
|
|
|
~Reseeder();
|
2017-02-02 20:25:25 +00:00
|
|
|
void Bootstrap ();
|
2017-02-01 22:17:25 +00:00
|
|
|
int ReseedFromServers ();
|
|
|
|
int ReseedFromSU3Url (const std::string& url);
|
|
|
|
int ProcessSU3File (const char * filename);
|
|
|
|
int ProcessZIPFile (const char * filename);
|
2014-12-12 20:45:39 +00:00
|
|
|
|
2014-12-13 23:35:53 +00:00
|
|
|
void LoadCertificates ();
|
2015-02-16 04:03:04 +00:00
|
|
|
|
2014-12-11 20:41:04 +00:00
|
|
|
private:
|
|
|
|
|
2014-12-13 23:35:53 +00:00
|
|
|
void LoadCertificate (const std::string& filename);
|
2015-11-03 14:15:49 +00:00
|
|
|
|
2014-12-12 15:34:50 +00:00
|
|
|
int ProcessSU3Stream (std::istream& s);
|
2017-01-31 00:31:01 +00:00
|
|
|
int ProcessZIPStream (std::istream& s, uint64_t contentLength);
|
|
|
|
|
2014-12-12 18:36:02 +00:00
|
|
|
bool FindZipDataDescriptor (std::istream& s);
|
2015-02-16 04:03:04 +00:00
|
|
|
|
2015-02-20 20:11:00 +00:00
|
|
|
std::string HttpsRequest (const std::string& address);
|
|
|
|
|
2015-02-19 15:06:11 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
std::map<std::string, PublicKey> m_SigningKeys;
|
|
|
|
};
|
2014-01-31 06:22:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 19:29:22 +00:00
|
|
|
#endif
|