Author

Topic: Verify Multiple Signature (Read 149 times)

newbie
Activity: 220
Merit: 0
October 30, 2020, 01:38:31 PM
#7
Great, But how it possible, please ans me
legendary
Activity: 3290
Merit: 16489
Thick-Skinned Gang Leader and Golden Feather 2021
October 19, 2020, 02:30:24 PM
#6
how can verify multiple proof address on one time job
See gmaxwell's post Smiley
legendary
Activity: 2114
Merit: 1292
There is trouble abrewing
October 19, 2020, 12:03:14 PM
#5
People can add 2 bitcoin addresses when they sign a message and that message will be use as ownership evidence for both 2 bitcoin addresses.

this sounds like an entirely different thing and it is possible to do. 2 different people can create two different keys and then share their public keys with each other to add and then come up with an aggregated signature which would be a single sig but coming from both of them. that is simplified version of what Schnorr signatures do.
hero member
Activity: 1316
Merit: 727
October 19, 2020, 11:49:24 AM
#4
People can add 2 bitcoin addresses when they sign a message and that message will be use as ownership evidence for both 2 bitcoin addresses.

I can not imagine of real use cases of multiple signature verification. If it is for one people, the approach can work but if it is for multi people, I don't see it is realistic to use. There is not many time I need to verify signature of other people. Any real use in the forum to verify multi signature in one batch?
legendary
Activity: 2114
Merit: 1292
There is trouble abrewing
October 19, 2020, 11:07:25 AM
#3
since each signature you are looking at are created using different messages and different private keys they have to be dealt with individually. even in transactions when there are multiple signatures (like in multi sig transactions or a tx with multiple inputs each with one signature) the signatures have to be checked individually.

since there is no popular usage for multiple message verification at a time you won't find any tool that can do it all in one place. you'll have to write the code yourself.
copper member
Activity: 2856
Merit: 3071
https://bit.ly/387FXHi lightning theory
October 19, 2020, 09:37:01 AM
#2
I don't know if you'll find a gui that will accept multiple signatures all at once.

You could probably make something in the console like:
addresses = list of addresses
Signatures = list of signatures
messages = list of messages
For loop in range(len(addresses))
                Print(verifysignature(messages[loop],addresses[loop],signature[loop]))

But I don't know the exact commands from memory and you'll have to know a little python...
legendary
Activity: 1484
Merit: 1024
#SWGT CERTIK Audited
October 19, 2020, 08:58:45 AM
#1
Is possible to verify multiple signature?, I know it's possible to send one transaction into multiple address. but how can verify multiple proof address on one time job not one by one like this?

I tried, It didn't work using electrum  Grin


Jump to: