BIP-44 : legacy : p2pkh
BIP-49 : witness : p2sh - p2wpkh
BIP-84 : witness : p2wpkh
!!這個應該是錯的!!
Double SHA256 of the serialization of:
1. version
2. inputData.sha256().sha256()
3. sequenceData.sha256().sha256()
4. outpoint
5. scriptCode
6. UnsafeBufferPointer<UInt64>(start: &amount, count: 1)
7. nSequence
8. outputData.sha256().sha256()
9. locktime
10.UnsafeBufferPointer<UInt32>(start: &hashType, count: 1)
Double SHA256 of the serialization of:
1. nVersion of the transaction (4-byte little endian)
2. hashPrevouts (32-byte hash)
3. hashSequence (32-byte hash)
4. outpoint (32-byte hash + 4-byte little endian)
5. scriptCode of the input (serialized as scripts inside CTxOuts)
6. value of the output spent by this input (8-byte little endian)
7. nSequence of the input (4-byte little endian)
8. hashOutputs (32-byte hash)
9. nLocktime of the transaction (4-byte little endian)
10.sighash type of the signature (4-byte little endian)
- 簽名會因為演算法隨機取點,導致同樣的內文、公私鑰也會產出不同的結果,故不能直接比對。