1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-15 01:20:10 +00:00
i2pd/libi2pd/Reseed.h

51 lines
889 B
C
Raw Normal View History

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