From c3b6162c078a061d920c87d38ee30c74fc6fc184 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sun, 31 Dec 2017 16:18:31 +0700 Subject: [PATCH] Test --- iguana/exchanges/mm.c | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/iguana/exchanges/mm.c b/iguana/exchanges/mm.c index ceb6075e8..e42e0463e 100644 --- a/iguana/exchanges/mm.c +++ b/iguana/exchanges/mm.c @@ -109,7 +109,7 @@ int main(int argc, const char * argv[]) printf("ERROR\n"); exit(0); } - if ( argv[1] != 0 && strcmp(argv[1],"hush") == 0 ) + else if ( argv[1] != 0 && strcmp(argv[1],"hush") == 0 ) { uint32_t timestamp; char str[65],wifstr[128]; bits256 privkey; int32_t i; timestamp = (uint32_t)time(NULL); @@ -118,7 +118,26 @@ int main(int argc, const char * argv[]) { OS_randombytes(privkey.bytes,sizeof(privkey)); bitcoin_priv2wiflong(0xab,wifstr,privkey,0x36); - if ( wifstr[2] == 'y' && wifstr[3] == 'h' && wifstr[4] == 'u' && wifstr[5] == 's' ) + if ( wifstr[2] == 'y' && wifstr[3] == 'H' && wifstr[4] == 'u' && wifstr[5] == 's' ) + { + printf("i.%d %s -> wif.%s\n",i,bits256_str(str,privkey),wifstr); + if ( wifstr[6] == 'h' ) + break; + } //else printf("failed %s\n",wifstr); + } + printf("done hush vanitygen done %u elapsed %d\n",(uint32_t)time(NULL),(uint32_t)time(NULL) - timestamp); + exit(0); + } + else if ( argv[1] != 0 && strcmp(argv[1],"vanity") == 0 && argv[2] != 0 ) + { + uint32_t timestamp; char str[65],wifstr[128]; bits256 privkey; int32_t i; + timestamp = (uint32_t)time(NULL); + printf("start vanitygen (%s) t.%u\n",argv[2],timestamp); + for (i=0; i<1000000000; i++) + { + OS_randombytes(privkey.bytes,sizeof(privkey)); + bitcoin_priv2wiflong(0xab,wifstr,privkey,0x36); + if ( wifstr[2] == 'x' && wifstr[3] == 'H' && wifstr[4] == 'u' && wifstr[5] == 's' ) { printf("i.%d %s -> wif.%s\n",i,bits256_str(str,privkey),wifstr); if ( wifstr[6] == 'h' )