2014-01-31 10:22:11 +04:00
|
|
|
#ifndef RESEED_H
|
|
|
|
#define RESEED_H
|
|
|
|
|
2014-12-11 23:41:04 +03:00
|
|
|
#include <iostream>
|
2014-01-31 10:22:11 +04:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-12-13 23:01:08 +03:00
|
|
|
#include <map>
|
2015-02-19 00:52:00 +03:00
|
|
|
#include <cryptopp/osrng.h>
|
2014-12-13 23:01:08 +03:00
|
|
|
#include "Identity.h"
|
2015-02-19 00:52:00 +03:00
|
|
|
#include "aes.h"
|
2014-01-31 10:22:11 +04:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
|
|
|
|
class Reseeder
|
|
|
|
{
|
2014-12-13 23:01:08 +03:00
|
|
|
typedef Tag<512> PublicKey;
|
|
|
|
|
2014-01-31 10:22:11 +04:00
|
|
|
public:
|
2014-12-11 23:41:04 +03:00
|
|
|
|
2014-01-31 10:22:11 +04:00
|
|
|
Reseeder();
|
|
|
|
~Reseeder();
|
2014-12-11 23:41:04 +03:00
|
|
|
bool reseedNow(); // depreacted
|
|
|
|
int ReseedNowSU3 ();
|
2014-12-12 23:45:39 +03:00
|
|
|
|
2014-12-14 02:35:53 +03:00
|
|
|
void LoadCertificates ();
|
2015-02-16 07:03:04 +03:00
|
|
|
|
|
|
|
std::string HttpsRequest (const std::string& address); // TODO: move to private section
|
|
|
|
|
2014-12-11 23:41:04 +03:00
|
|
|
private:
|
|
|
|
|
2014-12-14 02:35:53 +03:00
|
|
|
void LoadCertificate (const std::string& filename);
|
2015-02-17 05:28:37 +03:00
|
|
|
std::string LoadCertificate (CryptoPP::ByteQueue& queue); // returns issuer's name
|
2014-12-14 02:35:53 +03:00
|
|
|
|
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);
|
2015-02-16 07:03:04 +03:00
|
|
|
|
2015-02-17 23:34:30 +03:00
|
|
|
// for HTTPS
|
2015-02-18 06:45:55 +03:00
|
|
|
void PRF (const uint8_t * secret, const char * label, const uint8_t * random, size_t randomLen,
|
|
|
|
size_t len, uint8_t * buf);
|
2015-02-19 00:52:00 +03:00
|
|
|
size_t Encrypt (const uint8_t * in, size_t len, const uint8_t * mac, uint8_t * out);
|
|
|
|
size_t Decrypt (uint8_t * in, size_t len, uint8_t * out);
|
2015-02-17 23:34:30 +03:00
|
|
|
|
2014-12-13 23:01:08 +03:00
|
|
|
private:
|
|
|
|
|
|
|
|
std::map<std::string, PublicKey> m_SigningKeys;
|
2015-02-19 00:52:00 +03:00
|
|
|
|
|
|
|
// for HTTPS
|
|
|
|
CryptoPP::AutoSeededRandomPool m_Rnd;
|
|
|
|
i2p::crypto::CBCEncryption m_Encryption;
|
|
|
|
i2p::crypto::CBCDecryption m_Decryption;
|
|
|
|
uint8_t m_MacKey[32]; // client
|
|
|
|
|
2014-01-31 10:22:11 +04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-20 22:29:22 +03:00
|
|
|
#endif
|