thanks to clarify that.
I read in bitcoin or other coins, a transaction is accepted when other nodes recognize that the public key (address) and the hashed transaction itself were signed with the same key.
I'm interested in how this is done in specific, i guess i should look up for ECDSA now. Thats why i was not finding anything
If you can still point me to some code sample / documents you know would be appreciated.
Thanks
To be honest, I think the easiest resource for this is likely just Wikipedia: https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm
It outlines both the signature generation algorithm, and the signature verification algorithm.
If you really want to look at some code, here's a Python module dealing with the signature verification: https://github.com/nanotube/supybot-bitcoin-marketmonitor/blob/master/GPG/local/bitcoinsig.py
You can look through the code, but I don't think it will be easily understood.
that python code is quite something
ill start to read to read how the algorithm is working in general then, thanks for your help!