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"
|
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();
|
2014-12-11 20:41:04 +00:00
|
|
|
bool reseedNow(); // depreacted
|
|
|
|
int ReseedNowSU3 ();
|
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
|
|
|
|
|
|
|
std::string HttpsRequest (const std::string& address); // TODO: move to private section
|
|
|
|
|
2014-12-11 20:41:04 +00:00
|
|
|
private:
|
|
|
|
|
2014-12-13 23:35:53 +00:00
|
|
|
void LoadCertificate (const std::string& filename);
|
2015-02-17 02:28:37 +00:00
|
|
|
std::string LoadCertificate (CryptoPP::ByteQueue& queue); // returns issuer's name
|
2014-12-13 23:35:53 +00:00
|
|
|
|
2014-12-11 20:41:04 +00:00
|
|
|
int ReseedFromSU3 (const std::string& host);
|
2014-12-12 15:34:50 +00:00
|
|
|
int ProcessSU3File (const char * filename);
|
|
|
|
int ProcessSU3Stream (std::istream& s);
|
2014-12-12 18:36:02 +00:00
|
|
|
|
|
|
|
bool FindZipDataDescriptor (std::istream& s);
|
2015-02-16 04:03:04 +00:00
|
|
|
|
2015-02-17 20:34:30 +00:00
|
|
|
// for HTTPS
|
|
|
|
void PRF (const uint8_t * secret, const char * label, const uint8_t * random, size_t len, uint8_t * buf);
|
|
|
|
|
2014-12-13 20:01:08 +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
|