What is the algorithm behind multisignature address?

2

0

I know you can create a multisignature address with the command:

bitcoind createmultisig 2 ["pubkey1", "pubkey2", "pubkey3"]

As described here: https://gist.github.com/gavinandresen/3966071

This command returns the address (starting with character '3') and the redeem script.

My question: how to create that data without using bitcoind? What algorithms are used? I guess the address is just a hash of the redeem script, right? How could I generate the redeem script?

Could you point me to some sources?

haael

Posted 2015-05-29T16:45:37.583

Reputation: 183

Answers

2

OK, I found the answer I needed: https://bitcointalk.org/index.php?topic=317569

haael

Posted 2015-05-29T16:45:37.583

Reputation: 183