mirror of https://github.com/PurpleI2P/i2pd.git
I2P: End-to-End encrypted and anonymous Internet
https://i2pd.website/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
2.6 KiB
96 lines
2.6 KiB
11 years ago
|
#ifndef RESEED_H
|
||
|
#define RESEED_H
|
||
|
|
||
10 years ago
|
#include <iostream>
|
||
11 years ago
|
#include <string>
|
||
|
#include <vector>
|
||
10 years ago
|
#include <map>
|
||
10 years ago
|
#include <cryptopp/osrng.h>
|
||
10 years ago
|
#include <cryptopp/rsa.h>
|
||
10 years ago
|
#include <boost/asio.hpp>
|
||
10 years ago
|
#include "Identity.h"
|
||
9 years ago
|
#include "crypto/aes.h"
|
||
11 years ago
|
|
||
|
namespace i2p
|
||
|
{
|
||
|
namespace data
|
||
|
{
|
||
|
|
||
9 years ago
|
class Reseeder
|
||
|
{
|
||
|
typedef Tag<512> PublicKey;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Reseeder();
|
||
|
~Reseeder();
|
||
|
bool reseedNow(); // depreacted
|
||
|
int ReseedNowSU3 ();
|
||
|
|
||
|
void LoadCertificates ();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void LoadCertificate (const std::string& filename);
|
||
|
std::string LoadCertificate (CryptoPP::ByteQueue& queue); // returns issuer's name
|
||
|
|
||
|
int ReseedFromSU3 (const std::string& host, bool https = false);
|
||
|
int ProcessSU3File (const char * filename);
|
||
|
int ProcessSU3Stream (std::istream& s);
|
||
|
|
||
|
bool FindZipDataDescriptor (std::istream& s);
|
||
|
|
||
|
std::string HttpsRequest (const std::string& address);
|
||
|
|
||
|
private:
|
||
|
|
||
|
std::map<std::string, PublicKey> m_SigningKeys;
|
||
|
};
|
||
|
|
||
|
|
||
|
class TlsCipher
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual ~TlsCipher () {};
|
||
|
|
||
|
virtual void CalculateMAC (uint8_t type, const uint8_t * buf, size_t len, uint8_t * mac) = 0;
|
||
|
virtual size_t Encrypt (const uint8_t * in, size_t len, const uint8_t * mac, uint8_t * out) = 0;
|
||
|
virtual size_t Decrypt (uint8_t * buf, size_t len) = 0;
|
||
|
virtual size_t GetIVSize () const { return 0; }; // override for AES
|
||
|
};
|
||
|
|
||
|
|
||
|
class TlsSession
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
TlsSession (const std::string& host, int port);
|
||
|
~TlsSession ();
|
||
|
void Send (const uint8_t * buf, size_t len);
|
||
|
bool Receive (std::ostream& rs);
|
||
|
bool IsEstablished () const { return m_IsEstablished; };
|
||
|
|
||
|
private:
|
||
|
|
||
|
void Handshake ();
|
||
|
void SendHandshakeMsg (uint8_t handshakeType, uint8_t * data, size_t len);
|
||
|
void SendFinishedMsg ();
|
||
|
CryptoPP::RSA::PublicKey ExtractPublicKey (const uint8_t * certificate, size_t len);
|
||
|
|
||
|
void PRF (const uint8_t * secret, const char * label, const uint8_t * random, size_t randomLen,
|
||
|
size_t len, uint8_t * buf);
|
||
|
|
||
|
private:
|
||
|
|
||
|
bool m_IsEstablished;
|
||
|
boost::asio::ip::tcp::iostream m_Site;
|
||
|
CryptoPP::SHA256 m_FinishedHash;
|
||
|
uint8_t m_MasterSecret[64]; // actual size is 48, but must be multiple of 32
|
||
|
TlsCipher * m_Cipher;
|
||
|
};
|
||
11 years ago
|
}
|
||
|
}
|
||
|
|
||
10 years ago
|
#endif
|