i2pd/Reseed.h

76 lines
1.7 KiB
C
Raw Normal View History

#ifndef RESEED_H
#define RESEED_H
2014-12-11 15:41:04 -05:00
#include <iostream>
#include <string>
#include <vector>
2014-12-13 15:01:08 -05:00
#include <map>
2015-02-18 16:52:00 -05:00
#include <cryptopp/osrng.h>
2015-02-19 10:06:11 -05:00
#include <cryptopp/rsa.h>
2015-02-19 11:26:37 -05:00
#include <cryptopp/hmac.h>
2014-12-13 15:01:08 -05:00
#include "Identity.h"
2015-02-18 16:52:00 -05:00
#include "aes.h"
namespace i2p
{
namespace data
{
class Reseeder
{
2014-12-13 15:01:08 -05:00
typedef Tag<512> PublicKey;
public:
2014-12-11 15:41:04 -05:00
Reseeder();
~Reseeder();
2014-12-11 15:41:04 -05:00
bool reseedNow(); // depreacted
int ReseedNowSU3 ();
2014-12-12 15:45:39 -05:00
void LoadCertificates ();
2015-02-15 23:03:04 -05:00
std::string HttpsRequest (const std::string& address); // TODO: move to private section
2014-12-11 15:41:04 -05:00
private:
void LoadCertificate (const std::string& filename);
2015-02-16 21:28:37 -05:00
std::string LoadCertificate (CryptoPP::ByteQueue& queue); // returns issuer's name
2014-12-11 15:41:04 -05:00
int ReseedFromSU3 (const std::string& host);
2014-12-12 10:34:50 -05:00
int ProcessSU3File (const char * filename);
int ProcessSU3Stream (std::istream& s);
2014-12-12 13:36:02 -05:00
bool FindZipDataDescriptor (std::istream& s);
2015-02-15 23:03:04 -05:00
2015-02-19 10:06:11 -05:00
private:
std::map<std::string, PublicKey> m_SigningKeys;
};
class TlsSession
{
public:
TlsSession (const std::string& address);
private:
CryptoPP::RSA::PublicKey ExtractPublicKey (const uint8_t * certificate, size_t len);
2015-02-17 22:45:55 -05: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 11:26:37 -05:00
void CalculateMACKey (uint8_t type, uint64_t seqn, const uint8_t * buf, size_t len, uint8_t * mac);
2015-02-18 16:52:00 -05:00
size_t Encrypt (const uint8_t * in, size_t len, const uint8_t * mac, uint8_t * out);
2015-02-19 10:06:11 -05:00
size_t Decrypt (uint8_t * in, size_t len, uint8_t * out);
2014-12-13 15:01:08 -05:00
2015-02-19 10:06:11 -05:00
private:
2015-02-18 16:52:00 -05:00
CryptoPP::AutoSeededRandomPool m_Rnd;
i2p::crypto::CBCEncryption m_Encryption;
i2p::crypto::CBCDecryption m_Decryption;
uint8_t m_MacKey[32]; // client
};
}
}
2014-11-20 14:29:22 -05:00
#endif