0
i'm studying Bitcoin: A Peer-to-Peer Electronic Cash System Satoshi Nakamoto
and this paper introduce a transaction model. (above picture)

but i don't understand what is 'Hash' means exactly
i think Hash is same Bitcoin API JSON-RPC - signrawtransaction function
it means hash(txid + owner's public key)? then what method used hash function?
or hash(result of signrawtransaction + RIPEMD160(sha256(pub k)) )? then what method used to hash?
This might help: https://teachbitcoin.io/presentations/transaction_build.html#/5
– James C. – 2019-01-17T10:11:46.760thanks. but i have one more question. in the picture of center(1 and 2's transaction), why
Hash(Owner 2's pub K + signature hash)is Owner 1's Signature? Assuming the signature of 1 is correct, why 1's Sign arrow not heads Hash, point out 1's Signature? – user10865941 – 2019-01-17T10:39:17.177Thats because the transaction output is intended for owner 2. His pubkey is commited to the 2nd transaction. Specifically it is inthe output of tx2. He has the private key 2 that can spend it. – James C. – 2019-01-17T10:47:21.580
Its the original paper, but the illustration isn’t the most intuitive depiction. – James C. – 2019-01-17T10:48:02.743