i2pd/Identity.h

244 lines
6.6 KiB
C
Raw Normal View History

2013-12-20 07:05:45 +04:00
#ifndef IDENTITY_H__
#define IDENTITY_H__
#include <inttypes.h>
#include <string.h>
2014-07-11 23:39:38 +04:00
#include <string>
#include "base64.h"
#include "ElGamal.h"
2014-08-21 19:15:04 +04:00
#include "Signature.h"
2013-12-20 07:05:45 +04:00
namespace i2p
{
namespace data
{
2014-07-08 03:22:19 +04:00
template<int sz>
class Tag
{
public:
Tag (const uint8_t * buf) { memcpy (m_Buf, buf, sz); };
Tag (const Tag<sz>& ) = default;
#ifndef _WIN32 // FIXME!!! msvs 2013 can't compile it
Tag (Tag<sz>&& ) = default;
#endif
Tag () = default;
Tag<sz>& operator= (const Tag<sz>& ) = default;
#ifndef _WIN32
Tag<sz>& operator= (Tag<sz>&& ) = default;
#endif
uint8_t * operator()() { return m_Buf; };
const uint8_t * operator()() const { return m_Buf; };
operator uint8_t * () { return m_Buf; };
operator const uint8_t * () const { return m_Buf; };
const uint64_t * GetLL () const { return ll; };
2014-07-08 03:22:19 +04:00
bool operator== (const Tag<sz>& other) const { return !memcmp (m_Buf, other.m_Buf, sz); };
bool operator< (const Tag<sz>& other) const { return memcmp (m_Buf, other.m_Buf, sz) < 0; };
2014-07-11 23:39:38 +04:00
std::string ToBase64 () const
{
char str[sz*2];
int l = i2p::data::ByteStreamToBase64 (m_Buf, sz, str, sz*2);
str[l] = 0;
return std::string (str);
}
2014-08-26 22:56:00 +04:00
std::string ToBase32 () const
{
char str[sz*2];
int l = i2p::data::ByteStreamToBase32 (m_Buf, sz, str, sz*2);
str[l] = 0;
return std::string (str);
}
2014-08-26 22:56:00 +04:00
2014-07-08 03:22:19 +04:00
private:
union // 8 bytes alignment
{
uint8_t m_Buf[sz];
uint64_t ll[sz/8];
};
};
typedef Tag<32> IdentHash;
2014-04-07 22:01:24 +04:00
2013-12-20 07:05:45 +04:00
#pragma pack(1)
2013-12-21 05:22:55 +04:00
struct Keys
{
uint8_t privateKey[256];
uint8_t signingPrivateKey[20];
uint8_t publicKey[256];
uint8_t signingKey[128];
};
2014-08-06 19:09:06 +04:00
const uint8_t CERTIFICATE_TYPE_NULL = 0;
const uint8_t CERTIFICATE_TYPE_HASHCASH = 1;
const uint8_t CERTIFICATE_TYPE_HIDDEN = 2;
const uint8_t CERTIFICATE_TYPE_SIGNED = 3;
const uint8_t CERTIFICATE_TYPE_MULTIPLE = 4;
const uint8_t CERTIFICATE_TYPE_KEY = 5;
2013-12-20 07:05:45 +04:00
struct Identity
{
uint8_t publicKey[256];
uint8_t signingKey[128];
2014-08-06 19:09:06 +04:00
struct
{
uint8_t type;
uint16_t length;
} certificate;
2013-12-22 20:29:57 +04:00
2014-08-24 00:06:56 +04:00
Identity () = default;
Identity (const Keys& keys) { *this = keys; };
2013-12-22 20:29:57 +04:00
Identity& operator=(const Keys& keys);
2014-08-06 19:09:06 +04:00
size_t FromBuffer (const uint8_t * buf, size_t len);
IdentHash Hash () const;
2014-10-21 00:57:18 +04:00
};
#pragma pack()
Keys CreateRandomKeys ();
const size_t DEFAULT_IDENTITY_SIZE = sizeof (Identity); // 387 bytes
const uint16_t CRYPTO_KEY_TYPE_ELGAMAL = 0;
const uint16_t SIGNING_KEY_TYPE_DSA_SHA1 = 0;
const uint16_t SIGNING_KEY_TYPE_ECDSA_SHA256_P256 = 1;
typedef uint16_t SigningKeyType;
class IdentityEx
{
public:
IdentityEx ();
IdentityEx (const uint8_t * publicKey, const uint8_t * signingKey,
SigningKeyType type = SIGNING_KEY_TYPE_DSA_SHA1);
IdentityEx (const uint8_t * buf, size_t len);
IdentityEx (const IdentityEx& other);
~IdentityEx ();
IdentityEx& operator=(const IdentityEx& other);
IdentityEx& operator=(const Identity& standard);
size_t FromBase64(const std::string& s);
size_t FromBuffer (const uint8_t * buf, size_t len);
size_t ToBuffer (uint8_t * buf, size_t len) const;
const Identity& GetStandardIdentity () const { return m_StandardIdentity; };
const IdentHash& GetIdentHash () const { return m_IdentHash; };
size_t GetFullLen () const { return m_ExtendedLen + DEFAULT_IDENTITY_SIZE; };
size_t GetSigningPublicKeyLen () const;
size_t GetSignatureLen () const;
2014-08-23 16:41:06 +04:00
bool Verify (const uint8_t * buf, size_t len, const uint8_t * signature) const;
SigningKeyType GetSigningKeyType () const;
private:
2014-11-20 20:21:27 +03:00
void CreateVerifier () const;
private:
Identity m_StandardIdentity;
IdentHash m_IdentHash;
2014-11-20 20:21:27 +03:00
mutable i2p::crypto::Verifier * m_Verifier;
size_t m_ExtendedLen;
uint8_t * m_ExtendedBuffer;
};
2013-12-20 07:05:45 +04:00
2014-08-24 00:06:56 +04:00
class PrivateKeys // for eepsites
2014-03-20 00:38:55 +04:00
{
2014-08-24 00:06:56 +04:00
public:
2014-08-24 06:54:08 +04:00
PrivateKeys (): m_Signer (nullptr) {};
PrivateKeys (const PrivateKeys& other): m_Signer (nullptr) { *this = other; };
PrivateKeys (const Keys& keys): m_Signer (nullptr) { *this = keys; };
2014-08-24 00:06:56 +04:00
PrivateKeys& operator=(const Keys& keys);
2014-08-24 06:54:08 +04:00
PrivateKeys& operator=(const PrivateKeys& other);
~PrivateKeys () { delete m_Signer; };
2014-08-24 00:06:56 +04:00
const IdentityEx& GetPublic () const { return m_Public; };
const uint8_t * GetPrivateKey () const { return m_PrivateKey; };
const uint8_t * GetSigningPrivateKey () const { return m_SigningPrivateKey; };
2014-08-24 06:54:08 +04:00
void Sign (const uint8_t * buf, int len, uint8_t * signature) const;
2014-08-26 22:56:00 +04:00
size_t GetFullLen () const { return m_Public.GetFullLen () + 256 + m_Public.GetSignatureLen ()/2; };
2014-08-24 00:06:56 +04:00
size_t FromBuffer (const uint8_t * buf, size_t len);
size_t ToBuffer (uint8_t * buf, size_t len) const;
static PrivateKeys CreateRandomKeys (SigningKeyType type = SIGNING_KEY_TYPE_DSA_SHA1);
2014-08-24 06:54:08 +04:00
private:
void CreateSigner ();
2014-08-24 00:06:56 +04:00
private:
IdentityEx m_Public;
uint8_t m_PrivateKey[256];
uint8_t m_SigningPrivateKey[128]; // assume private key doesn't exceed 128 bytes
2014-08-24 06:54:08 +04:00
i2p::crypto::Signer * m_Signer;
2014-03-20 00:38:55 +04:00
};
2014-01-04 06:24:20 +04:00
// kademlia
struct XORMetric
{
2014-06-04 03:57:42 +04:00
union
{
uint8_t metric[32];
uint64_t metric_ll[4];
};
2014-01-04 06:24:20 +04:00
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; };
};
IdentHash CreateRoutingKey (const IdentHash& ident);
XORMetric operator^(const IdentHash& key1, const IdentHash& key2);
2013-12-21 05:22:55 +04:00
2014-01-04 06:24:20 +04:00
// destination for delivery instuctions
2013-12-20 07:05:45 +04:00
class RoutingDestination
{
public:
RoutingDestination (): m_ElGamalEncryption (nullptr) {};
2014-04-23 22:46:15 +04:00
virtual ~RoutingDestination () { delete m_ElGamalEncryption; };
2013-12-20 07:05:45 +04:00
virtual const IdentHash& GetIdentHash () const = 0;
virtual const uint8_t * GetEncryptionPublicKey () const = 0;
virtual bool IsDestination () const = 0; // for garlic
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 07:05:45 +04:00
};
class LocalDestination
{
public:
virtual ~LocalDestination() {};
2014-08-26 06:47:12 +04:00
virtual const PrivateKeys& GetPrivateKeys () const = 0;
virtual const uint8_t * GetEncryptionPrivateKey () const = 0;
virtual const uint8_t * GetEncryptionPublicKey () const = 0;
2014-08-26 06:47:12 +04:00
const IdentityEx& GetIdentity () const { return GetPrivateKeys ().GetPublic (); };
const IdentHash& GetIdentHash () const { return GetIdentity ().GetIdentHash (); };
void Sign (const uint8_t * buf, int len, uint8_t * signature) const
{
GetPrivateKeys ().Sign (buf, len, signature);
};
};
2013-12-20 07:05:45 +04:00
}
}
#endif