2014-01-04 02:24:20 +00:00
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <stdio.h>
|
2013-12-21 01:22:55 +00:00
|
|
|
|
#include <cryptopp/sha.h>
|
|
|
|
|
#include <cryptopp/osrng.h>
|
|
|
|
|
#include <cryptopp/dh.h>
|
|
|
|
|
#include <cryptopp/dsa.h>
|
|
|
|
|
#include "CryptoConst.h"
|
|
|
|
|
#include "Identity.h"
|
2014-04-07 17:47:40 +00:00
|
|
|
|
#include "base64.h"
|
2013-12-21 01:22:55 +00:00
|
|
|
|
|
|
|
|
|
namespace i2p
|
|
|
|
|
{
|
|
|
|
|
namespace data
|
|
|
|
|
{
|
2013-12-22 16:29:57 +00:00
|
|
|
|
Identity& Identity::operator=(const Keys& keys)
|
|
|
|
|
{
|
|
|
|
|
// copy public and signing keys together
|
|
|
|
|
memcpy (publicKey, keys.publicKey, sizeof (publicKey) + sizeof (signingKey));
|
|
|
|
|
memset (certificate, 0, sizeof (certificate));
|
|
|
|
|
return *this;
|
2014-04-07 17:47:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool Identity::FromBase64 (const std::string& s)
|
|
|
|
|
{
|
|
|
|
|
size_t count = Base64ToByteStream (s.c_str(), s.length(), reinterpret_cast<uint8_t*> (this), sizeof (Identity));
|
|
|
|
|
return count == sizeof(Identity);
|
2014-04-07 18:01:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IdentHash Identity::Hash()
|
|
|
|
|
{
|
|
|
|
|
IdentHash hash;
|
|
|
|
|
CryptoPP::SHA256().CalculateDigest(reinterpret_cast<uint8_t*>(&hash), reinterpret_cast<uint8_t*> (this), sizeof (Identity));
|
|
|
|
|
return hash;
|
2013-12-22 16:29:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-03-19 20:44:03 +00:00
|
|
|
|
PrivateKeys& PrivateKeys::operator=(const Keys& keys)
|
|
|
|
|
{
|
|
|
|
|
pub = keys;
|
|
|
|
|
memcpy (privateKey, keys.privateKey, 276); // 256 + 20
|
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-21 01:22:55 +00:00
|
|
|
|
Keys CreateRandomKeys ()
|
|
|
|
|
{
|
|
|
|
|
Keys keys;
|
|
|
|
|
CryptoPP::AutoSeededRandomPool rnd;
|
|
|
|
|
|
|
|
|
|
// encryption
|
|
|
|
|
CryptoPP::DH dh (i2p::crypto::elgp, i2p::crypto::elgg);
|
|
|
|
|
dh.GenerateKeyPair(rnd, keys.privateKey, keys.publicKey);
|
|
|
|
|
|
|
|
|
|
// signing
|
|
|
|
|
CryptoPP::DSA::PrivateKey privateKey;
|
|
|
|
|
CryptoPP::DSA::PublicKey publicKey;
|
|
|
|
|
privateKey.Initialize (rnd, i2p::crypto::dsap, i2p::crypto::dsaq, i2p::crypto::dsag);
|
|
|
|
|
privateKey.MakePublicKey (publicKey);
|
|
|
|
|
privateKey.GetPrivateExponent ().Encode (keys.signingPrivateKey, 20);
|
|
|
|
|
publicKey.GetPublicElement ().Encode (keys.signingKey, 128);
|
|
|
|
|
|
|
|
|
|
return keys;
|
|
|
|
|
}
|
2014-01-04 02:24:20 +00:00
|
|
|
|
|
2014-04-04 17:30:13 +00:00
|
|
|
|
void CreateRandomDHKeysPair (DHKeysPair * keys)
|
|
|
|
|
{
|
|
|
|
|
if (!keys) return;
|
|
|
|
|
CryptoPP::AutoSeededRandomPool rnd;
|
|
|
|
|
CryptoPP::DH dh (i2p::crypto::elgp, i2p::crypto::elgg);
|
|
|
|
|
dh.GenerateKeyPair(rnd, keys->privateKey, keys->publicKey);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-04 02:24:20 +00:00
|
|
|
|
RoutingKey CreateRoutingKey (const IdentHash& ident)
|
|
|
|
|
{
|
|
|
|
|
uint8_t buf[41]; // ident + yyyymmdd
|
|
|
|
|
memcpy (buf, (const uint8_t *)ident, 32);
|
|
|
|
|
time_t t = time (nullptr);
|
|
|
|
|
struct tm tm;
|
2014-01-09 21:29:06 +00:00
|
|
|
|
// WARNING!!! check if it is correct
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
|
gmtime_s(&tm, &t);
|
|
|
|
|
// <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> sprintf'<27><>. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?
|
|
|
|
|
// http://msdn.microsoft.com/en-us/library/ce3zzk1k.aspx
|
|
|
|
|
sprintf_s((char *)(buf + 32), 9, "%4i%2i%2i", tm.tm_year, tm.tm_mon, tm.tm_mday);
|
|
|
|
|
#else
|
|
|
|
|
gmtime_r(&t, &tm);
|
|
|
|
|
// <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> sprintf'<27><>. <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>?
|
|
|
|
|
sprintf((char *)(buf + 32), "%4i%2i%2i", tm.tm_year, tm.tm_mon, tm.tm_mday);
|
|
|
|
|
#endif
|
2014-01-04 02:24:20 +00:00
|
|
|
|
RoutingKey key;
|
|
|
|
|
CryptoPP::SHA256().CalculateDigest(key.hash, buf, 40);
|
|
|
|
|
return key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
XORMetric operator^(const RoutingKey& key1, const RoutingKey& key2)
|
|
|
|
|
{
|
|
|
|
|
// TODO: implementation depends on CPU
|
|
|
|
|
XORMetric m;
|
|
|
|
|
((uint64_t *)m.metric)[0] = ((uint64_t *)key1.hash)[0] ^ ((uint64_t *)key2.hash)[0];
|
|
|
|
|
((uint64_t *)m.metric)[1] = ((uint64_t *)key1.hash)[1] ^ ((uint64_t *)key2.hash)[1];
|
|
|
|
|
((uint64_t *)m.metric)[2] = ((uint64_t *)key1.hash)[2] ^ ((uint64_t *)key2.hash)[2];
|
|
|
|
|
((uint64_t *)m.metric)[3] = ((uint64_t *)key1.hash)[3] ^ ((uint64_t *)key2.hash)[3];
|
|
|
|
|
return m;
|
|
|
|
|
}
|
2013-12-21 01:22:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|