General:
I need a custom function to convert X to Base58 Check, where X meets format requirements.
Specific:
The Bitcoin algorithm uses a multistep process of converting a very large random number (32 byte HEX) called a ECDSA Key into a very specific new format called a public address. The last step of the process involved involves converting X into "base58check." Assuming I have X in the proper format, I need excel to convert X into Base58Check.
Read about Bitcoin Base58 Specifics HERE
Technical Background of Bitcoin Address HERE
In the 2nd link above there is a 10 step process (numbered 0 to 9) to create a Bitcoin Public Key. I have managed to get excel to do the entire process down through and including step 8. Step 9 is the stumbling block. The very last step.
Here is a Java site that does this process very nicely: Brainwallet
(The java code is available on Git Hub)
Here is a link to How this is done in C: Bitcoin
And here in Perl: Perl
HELP!
I need a custom function to convert X to Base58 Check, where X meets format requirements.
Specific:
The Bitcoin algorithm uses a multistep process of converting a very large random number (32 byte HEX) called a ECDSA Key into a very specific new format called a public address. The last step of the process involved involves converting X into "base58check." Assuming I have X in the proper format, I need excel to convert X into Base58Check.
Read about Bitcoin Base58 Specifics HERE
Technical Background of Bitcoin Address HERE
In the 2nd link above there is a 10 step process (numbered 0 to 9) to create a Bitcoin Public Key. I have managed to get excel to do the entire process down through and including step 8. Step 9 is the stumbling block. The very last step.
Here is a Java site that does this process very nicely: Brainwallet
(The java code is available on Git Hub)
Here is a link to How this is done in C: Bitcoin
And here in Perl: Perl
HELP!