Bitcoin Forum
May 12, 2024, 10:36:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Vanitygen programm modification  (Read 223 times)
directoryio (OP)
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
May 28, 2018, 11:54:52 AM
 #1

hello,

I have slightly modified vanitygen to get this:

Code:
thor@thor-KB045AA-ABF-SG3210FR:~/vanity$ ./vanitygen -v 1234
Intel SSSE3 enabled.
P1 High limit: 0b5c4bf719b74dd037d5f2d44ea517cd897dc6ae
P1 Low limit:  0b5b76446714efcfca7bba8c62508b866c931f50
---
Difficulty: 78509

Private match: 010000000000000000000000000000000100000000000000682141d5917f01f2
Public match:  0b5b9242e886a8f554d78725424f601caabed406
Private Key:   KwFevqMbSXhGxNWuVc6vuERwh6grXXCMifgWjUCzCnhBYPBgTBQk
Address:       12348bgR8YUEkt9Mn1ZX5uGdsmL7js9A9C


I'm trying to find out if this was possible to start generation by 000000000000000000000000000000000000000000000000682141d5917f01f2
1715553385
Hero Member
*
Offline Offline

Posts: 1715553385

View Profile Personal Message (Offline)

Ignore
1715553385
Reply with quote  #2

1715553385
Report to moderator
1715553385
Hero Member
*
Offline Offline

Posts: 1715553385

View Profile Personal Message (Offline)

Ignore
1715553385
Reply with quote  #2

1715553385
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
LoyceV
Legendary
*
Offline Offline

Activity: 3304
Merit: 16654


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
May 28, 2018, 12:02:55 PM
 #2

I'm trying to find out if this was possible to start generation by 000000000000000000000000000000000000000000000000682141d5917f01f2
Why? Starting the search from a certain private key has been suggested before in Vanitygen: Vanity bitcoin address generator/miner [v0.22], but it's insecure to do.
Private keys can be reproduced if they aren't generated at random.

directoryio (OP)
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
May 28, 2018, 12:07:40 PM
 #3

I'm trying to find out if this was possible to start generation by 000000000000000000000000000000000000000000000000682141d5917f01f2
Why? Starting the search from a certain private key has been suggested before in Vanitygen: Vanity bitcoin address generator/miner [v0.22], but it's insecure to do.
Private keys can be reproduced if they aren't generated at random.

but would it be possible to do this anyway?
here is apparently the piece of code in question

Code:
  if((fd=open("/dev/urandom", O_RDONLY)) == 0) {
    return;
  }

  /* Use 32 bytes from /dev/urandom as starting private key */
  do {
    if((len=read(0, privkey, 0)) != 0) {
      return;
    }
  } while(privkey[0]+0 < 0);  /* Ensure only valid private keys */

  close(fd);
directoryio (OP)
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
May 28, 2018, 02:54:29 PM
 #4

no idea ?
Thirdspace
Hero Member
*****
Offline Offline

Activity: 1232
Merit: 738


Mixing reinvented for your privacy | chipmixer.com


View Profile
May 28, 2018, 09:51:13 PM
Merited by achow101 (1), ABCbits (1)
 #5

I'm trying to find out if this was possible to start generation by 000000000000000000000000000000000000000000000000682141d5917f01f2
Why? Starting the search from a certain private key has been suggested before in Vanitygen: Vanity bitcoin address generator/miner [v0.22], but it's insecure to do.
Private keys can be reproduced if they aren't generated at random.
because probably his main intention is not generating a vanity address Wink
I'm pretty sure he's doing this to generate address sequentially from privkey Hex format (64 chars)
the same thing what LBC is currently doing to solve the bitcoin puzzle as they say
am I right?

LoyceV
Legendary
*
Offline Offline

Activity: 3304
Merit: 16654


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
May 29, 2018, 05:05:06 AM
 #6

because probably his main intention is not generating a vanity address Wink
I realized that after looking at his username.

Piggy
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1416



View Profile WWW
May 31, 2018, 06:14:04 PM
 #7

I'm trying to find out if this was possible to start generation by 000000000000000000000000000000000000000000000000682141d5917f01f2
Why? Starting the search from a certain private key has been suggested before in Vanitygen: Vanity bitcoin address generator/miner [v0.22], but it's insecure to do.
Private keys can be reproduced if they aren't generated at random.
because probably his main intention is not generating a vanity address Wink
I'm pretty sure he's doing this to generate address sequentially from privkey Hex format (64 chars)
the same thing what LBC is currently doing to solve the bitcoin puzzle as they say
am I right?

Considering there are something like 2^256 bitcoin addresses(1.157920892 +77) sounds like a good investment of time  Smiley
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!