Author

Topic: Bitcoin Vanity Generator (Read 741 times)

copper member
Activity: 1498
Merit: 1499
No I dont escrow anymore.
July 31, 2016, 08:08:44 AM
#14
@shorena,

I honestly don't know how you've survived on this forum for so long. You have the patience of a saint. Wink

Thanks, I try. Taking lengthy breaks helps a lot.

It seems that there are a lot of people, who fail at basic logic, mathematics and reading and comprehension, who have somehow stumbled into the world of Bitcoins.

I'm not sure if it is the media stories talking about people making fantastic amounts of money because Bitcoin went from being near worthless to being ~USD$650... but there are a lot of people around who just don't seem to understand the core concepts.

Granted, the world of crypto can be very confusing, and public keys, private keys, hashes and all the associated math and interrelationships can be a bit overwhelming... but still... a little bit of reading is enough to grasp the fundamentals, which (tricky crypto math aside) isn't really that hard to understand.

When someone understands something exceptionally well they are able to explain it in the simplest terms.

-> https://media.ccc.de/v/31c3_-_6369_-_en_-_saal_1_-_201412272145_-_ecchacks_-_djb_-_tanja_lange
or if you prever youtube -> https://www.youtube.com/watch?v=l6jTFxQaUJA

Split key generation is perfectly safe... at least as safe as Bitcoin itself. I assume that poster was getting confused with so-called vanitygen websites that don't do split key and just spit out a pub/priv key pair and "promise" not to record the private key...  Roll Eyes

Also... why people don't just download the vanitygen app themselves and run it is beyond me?? Huh It's tiny, and even on a single AMD R9-270 card I can generate relatively simple 4 or 5 char vanity addresses in minutes...

I think laptops are very common among posters here. Their CPUs tend to be weak and they often come with a GPU that isnt capable of OpenCL caluclations.
HCP
legendary
Activity: 2086
Merit: 4314
July 30, 2016, 09:15:33 PM
#13
@shorena,

I honestly don't know how you've survived on this forum for so long. You have the patience of a saint. Wink

It seems that there are a lot of people, who fail at basic logic, mathematics and reading and comprehension, who have somehow stumbled into the world of Bitcoins.

I'm not sure if it is the media stories talking about people making fantastic amounts of money because Bitcoin went from being near worthless to being ~USD$650... but there are a lot of people around who just don't seem to understand the core concepts.

Granted, the world of crypto can be very confusing, and public keys, private keys, hashes and all the associated math and interrelationships can be a bit overwhelming... but still... a little bit of reading is enough to grasp the fundamentals, which (tricky crypto math aside) isn't really that hard to understand.

Split key generation is perfectly safe... at least as safe as Bitcoin itself. I assume that poster was getting confused with so-called vanitygen websites that don't do split key and just spit out a pub/priv key pair and "promise" not to record the private key...  Roll Eyes

Also... why people don't just download the vanitygen app themselves and run it is beyond me?? Huh It's tiny, and even on a single AMD R9-270 card I can generate relatively simple 4 or 5 char vanity addresses in minutes...
copper member
Activity: 1498
Merit: 1499
No I dont escrow anymore.
July 30, 2016, 08:26:35 AM
#12
No never get lured by any vanity address generator as whatever they claim about not saving your private key or creating two seperate file by two different personal is just a lie. In creating vanity address private key is also generated and there will be no proof they can provide that they haven't saved your private key with them.
-snip-

Split key vanitygen is not a lie its ECDSA math. Person A creates one private key (A) and sends the public key (A_pub) to person B. That person now searches for a private key B. It must be in a way that its public key B_pub combined with A_pub results in a bitcoin address with the wanted prefix (e.g. 1test). A combines the keys A and B for the final private key C that has an address with prefix 1test. The key B alone is not enough to get C. You need both.

A very simplistic way to understand this is to think about clocks. Lets say I think of a time (I wont tell you) and you tell me a time (13:37). I now add both times and create a new time (mod 24 and 60). Which time is it?

This holds even true for basic addition: A(unknown) + B (known) = C (unknown). If you can tell me a way to know C for a given but unknown A. I will stop my vanity gen business and send all my income to an address of your choosing.
legendary
Activity: 3668
Merit: 6382
Looking for campaign manager? Contact icopress!
July 20, 2016, 03:09:24 PM
#11
Hey Guys,

I am searching for a specified Bitcoin Vanity Generator, that puts out the Bitcoin address and the Private Key in 2 seperated files. It would be nice if somebody could give me a tool like this.

Thank you,

Patrick Smiley

If it's acceptable to use the current vanitygen command line with one output file and split that file afterwards in the 2 files you want, this would beich easier to achieve and you can find very easily somebody to help you out with the (after)splitting.

And it should be much safer too...
full member
Activity: 126
Merit: 100
July 20, 2016, 02:41:27 PM
#10
if iam create custome addres bitcoin with vanity genartor
and must send private key is next my addres save or not
because private key send my balance bitcoin can lost with hand private key
legendary
Activity: 1218
Merit: 1006
July 18, 2016, 06:33:02 AM
#9
No never get lured by any vanity address generator as whatever they claim about not saving your private key or creating two seperate file by two different personal is just a lie. In creating vanity address private key is also generated and there will be no proof they can provide that they haven't saved your private key with them.

Better u try but i haven't tried this but this sound quite safe and you can do it by yourself if you have bitcoin client installed already and completely sync.

Sounds more like something one would do with a little linux command line fu. Im thinking with awk, grep and pipes it shoudl be possible to take the output from vanitygen and pipe it into two different files.
Failing that... editing the pattern.c source file from the vanitygen github and recompiling should enable one to output the values to 2 separate files instead of either the console or to 1 file. (Hint: around line 500 is the vg_output_match_console() procedure that deals with outputting the matched addresses/keys)

I'm just trying to figure out why someone would want something like this in the first place?  Huh
hero member
Activity: 560
Merit: 500
July 18, 2016, 12:33:50 AM
#8
in fact for what we modify our wallets address if could a risk losing balance because the owner knows your private key.
copper member
Activity: 1498
Merit: 1499
No I dont escrow anymore.
July 15, 2016, 07:07:48 AM
#7
Sounds more like something one would do with a little linux command line fu. Im thinking with awk, grep and pipes it shoudl be possible to take the output from vanitygen and pipe it into two different files.
Failing that... editing the pattern.c source file from the vanitygen github and recompiling should enable one to output the values to 2 separate files instead of either the console or to 1 file. (Hint: around line 500 is the vg_output_match_console() procedure that deals with outputting the matched addresses/keys)

I'm just trying to figure out why someone would want something like this in the first place?  Huh

¯\_(ツ)_/¯

Might be an A B problem, where OP has problem A and thinks B is the solution, so they ask for help with B instead of help with A (which they actually want to solve).
HCP
legendary
Activity: 2086
Merit: 4314
July 15, 2016, 05:35:03 AM
#6
Sounds more like something one would do with a little linux command line fu. Im thinking with awk, grep and pipes it shoudl be possible to take the output from vanitygen and pipe it into two different files.
Failing that... editing the pattern.c source file from the vanitygen github and recompiling should enable one to output the values to 2 separate files instead of either the console or to 1 file. (Hint: around line 500 is the vg_output_match_console() procedure that deals with outputting the matched addresses/keys)

I'm just trying to figure out why someone would want something like this in the first place?  Huh
copper member
Activity: 1498
Merit: 1499
No I dont escrow anymore.
July 15, 2016, 05:06:29 AM
#5
Hey Guys,

I am searching for a specified Bitcoin Vanity Generator, that puts out the Bitcoin address and the Private Key in 2 seperated files. It would be nice if somebody could give me a tool like this.

Thank you,

Patrick Smiley
I don't know if this can help but look at this service that shorena is providing here: https://bitcointalksearch.org/topic/bitcoin-vanity-addresses-1257817
Maybe you can ask him/her where to find a software that you are looking for since he/she knows a thing about vanity address.

Sounds more like something one would do with a little linux command line fu. Im thinking with awk, grep and pipes it shoudl be possible to take the output from vanitygen and pipe it into two different files.
hero member
Activity: 826
Merit: 1001
July 15, 2016, 04:56:22 AM
#4
Hey Guys,

I am searching for a specified Bitcoin Vanity Generator, that puts out the Bitcoin address and the Private Key in 2 seperated files. It would be nice if somebody could give me a tool like this.

Thank you,

Patrick Smiley
I don't know if this can help but look at this service that shorena is providing here: https://bitcointalksearch.org/topic/bitcoin-vanity-addresses-1257817
Maybe you can ask him/her where to find a software that you are looking for since he/she knows a thing about vanity address.
hero member
Activity: 574
Merit: 500
July 15, 2016, 04:44:38 AM
#3
I have never seen a software like this . but what is the point from making each of the public and private kkeys in separated files? After generating the addresses normally with vanity gen you can do whatever you want , organize them or separate them
HCP
legendary
Activity: 2086
Merit: 4314
July 15, 2016, 04:36:41 AM
#2
What is wrong with using the vanitygen commandline app? Why do you specifically need the address and the private key separated into 2 separate files?

Is there some special use-case that you have in mind with regards to security or something?

member
Activity: 117
Merit: 250
July 14, 2016, 10:17:28 AM
#1
I am searching a bitcoin vanity generator
Jump to: