mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-01-22 21:37:18 +01:00
implementation
This commit is contained in:
parent
6876a8645d
commit
640f7b12fe
53
vanity.hpp
53
vanity.hpp
|
@ -10,53 +10,22 @@
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
#ifdef _WIN32
|
|
||||||
#include <windows.h>
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// MARCO
|
|
||||||
#ifndef _WIN32
|
|
||||||
#define INIT_CPUS(count_cpu){\
|
|
||||||
cpu = CPU_ALLOC(count_cpu-1);\
|
|
||||||
if (cpu == NULL) {\
|
|
||||||
std::cout << "CPU_ALLOC error" << std::endl;\
|
|
||||||
return 1;\
|
|
||||||
}\
|
|
||||||
}
|
|
||||||
#else
|
|
||||||
#warning don't testing
|
|
||||||
#define INIT_CPUS(count_cpu){\
|
|
||||||
HANDLE process;\
|
|
||||||
DWORD_PTR processAffinityMask;\
|
|
||||||
for(int i=0; i<count_cpu; i++) processAffinityMask |= 1<<(2*i);\
|
|
||||||
process = GetCurrentProcess();\
|
|
||||||
HANDLE thread = GetCurrentThread();\
|
|
||||||
DWORD_PTR threadAffinityMask = 1<<(2*omp_get_thread_num());\
|
|
||||||
SetThreadAffinityMask(thread, threadAffinityMask);\
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static std::mutex thread_mutex;
|
static std::mutex thread_mutex;
|
||||||
static i2p::data::SigningKeyType type;
|
static i2p::data::SigningKeyType type;
|
||||||
static i2p::data::PrivateKeys keys;
|
//static i2p::data::PrivateKeys keys;
|
||||||
static bool finded=false;
|
static bool finded=false;
|
||||||
static size_t padding_size;
|
|
||||||
|
static size_t MutateByte;
|
||||||
|
|
||||||
|
static uint32_t FindedNonce=0;
|
||||||
|
|
||||||
static uint8_t * KeyBuf;
|
static uint8_t * KeyBuf;
|
||||||
static uint8_t * PaddingBuf;
|
|
||||||
static unsigned long long hash;
|
//static uint8_t * PaddingBuf;
|
||||||
#ifndef _WIN32
|
static unsigned long long hashescounter;
|
||||||
static cpu_set_t * cpu;
|
|
||||||
#endif
|
|
||||||
//Functions visible and don't need.
|
//Functions visible and don't need.
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
it does not need, but maybe in future we are can create.
|
|
||||||
namespace i2p{
|
|
||||||
namespace tools{
|
|
||||||
namespace vain{
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
173
vanitygen.cpp
173
vanitygen.cpp
|
@ -24,50 +24,89 @@ return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#ifdef CPU_ONLY
|
static size_t ByteStreamToBase32 (const uint8_t * inBuf, size_t len, char * outBuf, size_t outLen)
|
||||||
|
{
|
||||||
|
size_t ret = 0, pos = 1;
|
||||||
|
int bits = 8, tmp = inBuf[0];
|
||||||
|
while (ret < outLen && (bits > 0 || pos < len))
|
||||||
|
{
|
||||||
|
if (bits < 5)
|
||||||
|
{
|
||||||
|
if (pos < len)
|
||||||
|
{
|
||||||
|
tmp <<= 8;
|
||||||
|
tmp |= inBuf[pos] & 0xFF;
|
||||||
|
pos++;
|
||||||
|
bits += 8;
|
||||||
|
}
|
||||||
|
else // last byte
|
||||||
|
{
|
||||||
|
tmp <<= (5 - bits);
|
||||||
|
bits = 5;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bits -= 5;
|
||||||
|
int ind = (tmp >> bits) & 0x1F;
|
||||||
|
outBuf[ret] = (ind < 26) ? (ind + 'a') : ((ind - 26) + '2');
|
||||||
|
ret++;
|
||||||
|
}
|
||||||
|
outBuf[ret]='\0';
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
static inline bool NotThat(const char * a, const char *b){
|
static inline bool NotThat(const char * a, const char *b){
|
||||||
while(*b)
|
while(*b)
|
||||||
if(*a++!=*b++) return true;
|
if(*a++!=*b++) return true;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void twist_cpu(uint8_t * buf){
|
|
||||||
//TODO: NORMAL IMPLEMENTATION,\
|
|
||||||
As in miner...
|
|
||||||
|
|
||||||
RAND_bytes(buf,padding_size);
|
#ifdef CPU_ONLY
|
||||||
}
|
static inline bool thread_find(uint8_t * buf,const char * prefix,int id_thread,unsigned long long throughput){
|
||||||
|
/*
|
||||||
|
Thanks to orignal ^-^
|
||||||
// XXX: make this faster
|
For idea and example ^-^
|
||||||
static inline void mutate_keys_cpu(
|
Orignal is sensei of crypto ;)
|
||||||
uint8_t * buf,
|
*/
|
||||||
uint8_t * padding)
|
|
||||||
{
|
|
||||||
twist_cpu(padding);
|
|
||||||
thread_mutex.lock();
|
|
||||||
keys.RecalculateIdentHash(buf);
|
|
||||||
thread_mutex.unlock();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
static void thread_find(const char * prefix,int id_thread){
|
|
||||||
|
|
||||||
#ifndef _WIN32
|
|
||||||
sched_setaffinity(0, sizeof(cpu), cpu);
|
|
||||||
cpu++;
|
|
||||||
#endif
|
|
||||||
std::cout << "Thread " << id_thread << " binded" << std::endl;
|
std::cout << "Thread " << id_thread << " binded" << std::endl;
|
||||||
|
|
||||||
while(NotThat(keys.GetPublic()->GetIdentHash().ToBase32().c_str(),prefix) and !finded)
|
uint8_t b[391] __attribute__((aligned(4)));
|
||||||
{
|
memcpy (b, buf, 391);
|
||||||
//size_t l0 = 0; \
|
|
||||||
in future.
|
|
||||||
|
|
||||||
mutate_keys_cpu(KeyBuf,PaddingBuf);
|
int len = strlen (prefix);
|
||||||
hash++;
|
|
||||||
|
SHA256_CTX ctx, ctx1;
|
||||||
|
SHA256_Init(&ctx);
|
||||||
|
SHA256_Update(&ctx, b, MutateByte);
|
||||||
|
|
||||||
|
uint32_t * nonce = (uint32_t *)(b+MutateByte); // in nonce copy of MutateByte of b;
|
||||||
|
(*nonce)+=id_thread*throughput;
|
||||||
|
|
||||||
|
uint8_t hash[32];
|
||||||
|
char addr[53];
|
||||||
|
|
||||||
|
while(throughput-- and !finded){
|
||||||
|
|
||||||
|
memcpy (&ctx1, &ctx, sizeof (SHA256_CTX));
|
||||||
|
SHA256_Update(&ctx1, b + MutateByte, 71);
|
||||||
|
SHA256_Final(hash, &ctx1);
|
||||||
|
ByteStreamToBase32 (hash, 32, addr, len);
|
||||||
|
|
||||||
|
if( !NotThat(addr,prefix) ){
|
||||||
|
ByteStreamToBase32 (hash, 32, addr, 52);
|
||||||
|
std::cout << "Address found " << addr << " in " << id_thread << std::endl;
|
||||||
|
finded=true;
|
||||||
|
FindedNonce=*nonce;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
(*nonce)++;
|
||||||
|
hashescounter++;
|
||||||
|
if (finded) break;
|
||||||
|
}//while
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
@ -86,8 +125,17 @@ int main (int argc, char * argv[])
|
||||||
type = i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519;
|
type = i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519;
|
||||||
if ( argc > 3 )
|
if ( argc > 3 )
|
||||||
type = NameToSigType(std::string(argv[3]));
|
type = NameToSigType(std::string(argv[3]));
|
||||||
|
|
||||||
|
///////////////
|
||||||
|
//For while
|
||||||
|
if(type != i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519){
|
||||||
|
std::cout << "For a while only ED25519-SHA512" << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
///////////////
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
keys = i2p::data::PrivateKeys::CreateRandomKeys (type);
|
auto keys = i2p::data::PrivateKeys::CreateRandomKeys (type);
|
||||||
switch(type){
|
switch(type){
|
||||||
case i2p::data::SIGNING_KEY_TYPE_DSA_SHA1:
|
case i2p::data::SIGNING_KEY_TYPE_DSA_SHA1:
|
||||||
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA512_P521:
|
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA512_P521:
|
||||||
|
@ -102,67 +150,64 @@ int main (int argc, char * argv[])
|
||||||
}
|
}
|
||||||
switch(type){
|
switch(type){
|
||||||
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA256_P256:
|
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA256_P256:
|
||||||
padding_size=64;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA384_P384:
|
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA384_P384:
|
||||||
padding_size=32;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA512_P521:
|
case i2p::data::SIGNING_KEY_TYPE_ECDSA_SHA512_P521:
|
||||||
padding_size=4;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA256_2048:
|
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA256_2048:
|
||||||
padding_size=128;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA384_3072:
|
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA384_3072:
|
||||||
padding_size=256;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA512_4096:
|
case i2p::data::SIGNING_KEY_TYPE_RSA_SHA512_4096:
|
||||||
padding_size=384;
|
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519:
|
case i2p::data::SIGNING_KEY_TYPE_EDDSA_SHA512_ED25519:
|
||||||
padding_size=96;
|
MutateByte=320;
|
||||||
break;
|
break;
|
||||||
case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256:
|
case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256:
|
||||||
case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256_TEST:
|
case i2p::data::SIGNING_KEY_TYPE_GOSTR3410_CRYPTO_PRO_A_GOSTR3411_256_TEST:
|
||||||
padding_size=64;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: multi threading
|
|
||||||
/*
|
|
||||||
TODO:
|
|
||||||
<orignal> Francezgy переделай пожалуйста треды
|
|
||||||
<orignal> без всех это pthread
|
|
||||||
* orignal has quit (Quit: Leaving)
|
|
||||||
*/
|
|
||||||
//
|
|
||||||
KeyBuf = new uint8_t[keys.GetFullLen()];
|
KeyBuf = new uint8_t[keys.GetFullLen()];
|
||||||
PaddingBuf = keys.GetPadding();
|
keys.ToBuffer (KeyBuf, keys.GetFullLen ());
|
||||||
//
|
|
||||||
unsigned int count_cpu = sysconf(_SC_NPROCESSORS_ONLN);
|
unsigned int count_cpu = sysconf(_SC_NPROCESSORS_ONLN);
|
||||||
std::vector<std::thread> threads(count_cpu);
|
std::vector<std::thread> threads(count_cpu);
|
||||||
INIT_CPUS(count_cpu);
|
|
||||||
//
|
|
||||||
std::cout << "Start vanity generator in " << count_cpu << " threads" << std::endl;
|
|
||||||
///
|
|
||||||
for ( unsigned int j = count_cpu;j--;)
|
|
||||||
threads[j] = std::thread(thread_find,argv[2],j);
|
|
||||||
|
|
||||||
// SET AFFINITY NOW IN FUNCTION
|
std::cout << "Start vanity generator in " << count_cpu << " threads" << std::endl;
|
||||||
|
|
||||||
|
unsigned long long thoughtput = 0x4F4B5A37;
|
||||||
|
|
||||||
|
for ( unsigned int j = count_cpu;j--;){
|
||||||
|
threads[j] = std::thread(thread_find,KeyBuf,argv[2],j,thoughtput);
|
||||||
|
thoughtput+=1000;
|
||||||
|
}
|
||||||
|
|
||||||
for(unsigned int j = 0; j < count_cpu;j++)
|
for(unsigned int j = 0; j < count_cpu;j++)
|
||||||
threads[j].join();
|
threads[j].join();
|
||||||
///
|
|
||||||
std::cout << "Hashes: " << hash << std::endl;
|
if(FindedNonce == 0){
|
||||||
|
std::cout << "Don't finded " << std::endl;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
memcpy (KeyBuf + MutateByte, &FindedNonce, 4);
|
||||||
|
std::cout << "Hashes: " << hashescounter << std::endl;
|
||||||
|
|
||||||
std::ofstream f (argv[1], std::ofstream::binary | std::ofstream::out);
|
std::ofstream f (argv[1], std::ofstream::binary | std::ofstream::out);
|
||||||
if (f)
|
if (f)
|
||||||
{
|
{
|
||||||
size_t len = keys.GetFullLen ();
|
f.write ((char *)KeyBuf, keys.GetFullLen ());
|
||||||
len = keys.ToBuffer (KeyBuf, len);
|
|
||||||
f.write ((char *)KeyBuf, len);
|
|
||||||
delete [] KeyBuf;
|
delete [] KeyBuf;
|
||||||
std::cout << "Destination " << keys.GetPublic ()->GetIdentHash ().ToBase32 () << " created" << std::endl;
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
std::cout << "Can't create file " << argv[1] << std::endl;
|
std::cout << "Can't create file " << argv[1] << std::endl;
|
||||||
|
|
Loading…
Reference in a new issue