Where is the code for verification of multi signature?

0

I want to apply the multisig system to my own project. It's not hard to get the code for the client (or signing?), but where is the code for the verification process?

adamdudu

Posted 2015-03-20T00:46:09.107

Reputation: 1

Do you mean that you're going to be verifying transactions, or that you just want the ability to sign a message with multiple keys? There's a lot of code associated with the first one that you wouldn't need for the second.Nick ODell 2015-03-20T04:26:47.167

I just want to sign a message with multiple keys at client and verify it at the server side.adamdudu 2015-03-21T01:38:22.287

not sure I understand the question correctly, but for verification I have these three links which helped me to verify signatures and transactions for correctness:

https://en.bitcoin.it/wiki/Protocol_rules#.22tx.22_messages

http://bitcoin.stackexchange.com/questions/46455/verifying-a-bitcoin-trx-on-the-unix-cmd-line-with-openssl

https://github.com/bitcoin/bips/blob/master/bip-0066.mediawiki

pebwindkraft 2017-04-10T09:03:37.437

No answers