2013-12-20 03:05:45 +00:00
|
|
|
#ifndef IDENTITY_H__
|
|
|
|
#define IDENTITY_H__
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
2014-02-21 01:28:41 +00:00
|
|
|
#include "ElGamal.h"
|
2013-12-20 03:05:45 +00:00
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
{
|
|
|
|
namespace data
|
|
|
|
{
|
|
|
|
#pragma pack(1)
|
2013-12-21 01:22:55 +00:00
|
|
|
|
|
|
|
struct Keys
|
|
|
|
{
|
|
|
|
uint8_t privateKey[256];
|
|
|
|
uint8_t signingPrivateKey[20];
|
|
|
|
uint8_t publicKey[256];
|
|
|
|
uint8_t signingKey[128];
|
|
|
|
};
|
2013-12-20 03:05:45 +00:00
|
|
|
|
|
|
|
struct Identity
|
|
|
|
{
|
|
|
|
uint8_t publicKey[256];
|
|
|
|
uint8_t signingKey[128];
|
|
|
|
uint8_t certificate[3];
|
2013-12-22 16:29:57 +00:00
|
|
|
|
|
|
|
Identity& operator=(const Keys& keys);
|
2013-12-20 03:05:45 +00:00
|
|
|
};
|
|
|
|
|
2014-03-19 20:38:55 +00:00
|
|
|
struct PrivateKeys // for eepsites
|
|
|
|
{
|
|
|
|
Identity pub;
|
|
|
|
uint8_t privateKey[256];
|
|
|
|
uint8_t signingPrivateKey[20];
|
2014-03-19 20:44:03 +00:00
|
|
|
|
|
|
|
PrivateKeys& operator=(const Keys& keys);
|
2014-03-19 20:38:55 +00:00
|
|
|
};
|
|
|
|
|
2013-12-20 03:05:45 +00:00
|
|
|
#pragma pack()
|
|
|
|
|
|
|
|
class IdentHash
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
IdentHash (const uint8_t * hash) { memcpy (m_Hash, hash, 32); };
|
|
|
|
IdentHash (const IdentHash& ) = default;
|
2014-01-09 19:56:07 +00:00
|
|
|
#ifndef _WIN32 // FIXME!!! msvs 2013 can't compile it
|
2013-12-20 03:05:45 +00:00
|
|
|
IdentHash (IdentHash&& ) = default;
|
2014-01-09 19:56:07 +00:00
|
|
|
#endif
|
2013-12-20 03:05:45 +00:00
|
|
|
IdentHash () = default;
|
|
|
|
|
|
|
|
IdentHash& operator= (const IdentHash& ) = default;
|
2014-01-09 19:56:07 +00:00
|
|
|
#ifndef _WIN32
|
2013-12-20 03:05:45 +00:00
|
|
|
IdentHash& operator= (IdentHash&& ) = default;
|
2014-01-09 19:56:07 +00:00
|
|
|
#endif
|
2013-12-20 03:05:45 +00:00
|
|
|
|
|
|
|
uint8_t * operator()() { return m_Hash; };
|
|
|
|
const uint8_t * operator()() const { return m_Hash; };
|
|
|
|
|
|
|
|
operator uint8_t * () { return m_Hash; };
|
|
|
|
operator const uint8_t * () const { return m_Hash; };
|
|
|
|
|
|
|
|
bool operator== (const IdentHash& other) const { return !memcmp (m_Hash, other.m_Hash, 32); };
|
|
|
|
bool operator< (const IdentHash& other) const { return memcmp (m_Hash, other.m_Hash, 32) < 0; };
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
uint8_t m_Hash[32];
|
|
|
|
};
|
|
|
|
|
2013-12-21 01:22:55 +00:00
|
|
|
IdentHash CalculateIdentHash (const Identity& identity);
|
|
|
|
Keys CreateRandomKeys ();
|
2014-01-04 02:24:20 +00:00
|
|
|
|
|
|
|
// kademlia
|
|
|
|
struct RoutingKey
|
|
|
|
{
|
|
|
|
uint8_t hash[32];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct XORMetric
|
|
|
|
{
|
|
|
|
uint8_t metric[32];
|
|
|
|
|
|
|
|
void SetMin () { memset (metric, 0, 32); };
|
|
|
|
void SetMax () { memset (metric, 0xFF, 32); };
|
|
|
|
bool operator< (const XORMetric& other) const { return memcmp (metric, other.metric, 32) < 0; };
|
|
|
|
};
|
|
|
|
|
|
|
|
RoutingKey CreateRoutingKey (const IdentHash& ident);
|
|
|
|
XORMetric operator^(const RoutingKey& key1, const RoutingKey& key2);
|
2013-12-21 01:22:55 +00:00
|
|
|
|
2014-01-04 02:24:20 +00:00
|
|
|
// destination for delivery instuctions
|
2013-12-20 03:05:45 +00:00
|
|
|
class RoutingDestination
|
|
|
|
{
|
|
|
|
public:
|
2014-02-21 01:28:41 +00:00
|
|
|
|
|
|
|
RoutingDestination (): m_ElGamalEncryption (nullptr) {};
|
|
|
|
virtual ~RoutingDestination () { delete m_ElGamalEncryption; };
|
|
|
|
|
2013-12-20 03:05:45 +00:00
|
|
|
virtual const IdentHash& GetIdentHash () const = 0;
|
|
|
|
virtual const uint8_t * GetEncryptionPublicKey () const = 0;
|
|
|
|
virtual bool IsDestination () const = 0; // for garlic
|
2014-02-21 01:28:41 +00:00
|
|
|
|
|
|
|
i2p::crypto::ElGamalEncryption * GetElGamalEncryption () const
|
|
|
|
{
|
|
|
|
if (!m_ElGamalEncryption)
|
|
|
|
m_ElGamalEncryption = new i2p::crypto::ElGamalEncryption (GetEncryptionPublicKey ());
|
|
|
|
return m_ElGamalEncryption;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
mutable i2p::crypto::ElGamalEncryption * m_ElGamalEncryption; // use lazy initialization
|
2013-12-20 03:05:45 +00:00
|
|
|
};
|
2014-03-14 19:13:34 +00:00
|
|
|
|
|
|
|
class LocalDestination
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
virtual void UpdateLeaseSet () = 0; // LeaseSet must be update
|
|
|
|
};
|
2013-12-20 03:05:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|