i2pd/Reseed.h

48 lines
745 B
C
Raw Normal View History

#ifndef RESEED_H
#define RESEED_H
2014-12-11 21:41:04 +01:00
#include <iostream>
#include <string>
#include <vector>
2014-12-13 21:01:08 +01:00
#include <map>
#include "Identity.h"
2015-11-03 15:15:49 +01:00
#include "Crypto.h"
namespace i2p
{
namespace data
{
class Reseeder
{
2014-12-13 21:01:08 +01:00
typedef Tag<512> PublicKey;
public:
2014-12-11 21:41:04 +01:00
Reseeder();
~Reseeder();
2014-12-11 21:41:04 +01:00
int ReseedNowSU3 ();
2014-12-12 21:45:39 +01:00
void LoadCertificates ();
2015-02-16 05:03:04 +01:00
2014-12-11 21:41:04 +01:00
private:
void LoadCertificate (const std::string& filename);
2015-11-03 15:15:49 +01:00
2015-12-21 15:33:09 +01:00
int ReseedFromSU3 (const std::string& host);
2014-12-12 16:34:50 +01:00
int ProcessSU3File (const char * filename);
int ProcessSU3Stream (std::istream& s);
2014-12-12 19:36:02 +01:00
bool FindZipDataDescriptor (std::istream& s);
2015-02-16 05:03:04 +01:00
2015-02-20 21:11:00 +01:00
std::string HttpsRequest (const std::string& address);
2015-02-19 16:06:11 +01:00
private:
std::map<std::string, PublicKey> m_SigningKeys;
};
}
}
2014-11-20 20:29:22 +01:00
#endif