i2pd/libi2pd/Reseed.h

62 lines
1.2 KiB
C
Raw Normal View History

/*
* Copyright (c) 2013-2020, The PurpleI2P Project
*
* This file is part of Purple i2pd project and licensed under BSD3
*
* See full license text in LICENSE file at top of project tree
*/
#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"
2015-11-03 17:15:49 +03:00
#include "Crypto.h"
namespace i2p
{
namespace data
{
class Reseeder
{
2018-01-06 06:48:51 +03:00
typedef Tag<512> PublicKey;
public:
2018-01-06 06:48:51 +03:00
Reseeder();
~Reseeder();
void Bootstrap ();
2017-02-02 01:17:25 +03:00
int ReseedFromServers ();
int ProcessSU3File (const char * filename);
int ProcessZIPFile (const char * filename);
2014-12-12 23:45:39 +03:00
void LoadCertificates ();
2018-01-06 06:48:51 +03:00
2014-12-11 23:41:04 +03:00
private:
2021-01-26 03:48:33 +03:00
int ReseedFromSU3Url (const std::string& url, bool isHttps = true);
void LoadCertificate (const std::string& filename);
2018-01-06 06:48:51 +03:00
int ProcessSU3Stream (std::istream& s);
int ProcessZIPStream (std::istream& s, uint64_t contentLength);
2014-12-12 21:36:02 +03:00
bool FindZipDataDescriptor (std::istream& s);
2018-01-06 06:48:51 +03:00
2015-02-20 23:11:00 +03:00
std::string HttpsRequest (const std::string& address);
2021-01-26 03:48:33 +03:00
std::string YggdrasilRequest (const std::string& address);
template<typename Stream>
std::string ReseedRequest (Stream& s, const std::string& uri);
2018-01-06 06:48:51 +03:00
private:
2015-02-19 18:06:11 +03:00
std::map<std::string, PublicKey> m_SigningKeys;
};
}
}
2014-11-20 22:29:22 +03:00
#endif