i2pd/Reseed.h

46 lines
694 B
C
Raw Normal View History

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