#!/usr/bin/env python3 # Copyright (c) 2021 The Zcash developers # Distributed under the MIT software license, see the accompanying # file COPYING or https://www.opensource.org/licenses/mit-license.php . # # zip244.py # # Functionality to create txids, auth digests, and signature digests. # # This file is modified from zcash/zcash-test-vectors. # import struct from pyblake2 import blake2b from .mininode import ser_uint256 from .script import ( SIGHASH_ANYONECANPAY, SIGHASH_NONE, SIGHASH_SINGLE, getHashOutputs, getHashPrevouts, getHashSequence, ) # Transparent def transparent_digest(tx): digest = blake2b(digest_size=32, person=b'ZTxIdTranspaHash') if len(tx.vin) + len(tx.vout) > 0: digest.update(getHashPrevouts(tx, b'ZTxIdPrevoutHash')) digest.update(getHashSequence(tx, b'ZTxIdSequencHash')) digest.update(getHashOutputs(tx, b'ZTxIdOutputsHash')) return digest.digest() def transparent_scripts_digest(tx): digest = blake2b(digest_size=32, person=b'ZTxAuthTransHash') for x in tx.vin: digest.update(bytes(x.scriptSig)) return digest.digest() # Sapling def sapling_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSaplingHash') if len(saplingBundle.spends) + len(saplingBundle.outputs) > 0: digest.update(sapling_spends_digest(saplingBundle)) digest.update(sapling_outputs_digest(saplingBundle)) digest.update(struct.pack(' 0: for desc in saplingBundle.spends: digest.update(desc.zkproof.serialize()) for desc in saplingBundle.spends: digest.update(desc.spendAuthSig.serialize()) for desc in saplingBundle.outputs: digest.update(desc.zkproof.serialize()) digest.update(saplingBundle.bindingSig.serialize()) return digest.digest() # - Spends def sapling_spends_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSSpendsHash') if len(saplingBundle.spends) > 0: digest.update(sapling_spends_compact_digest(saplingBundle)) digest.update(sapling_spends_noncompact_digest(saplingBundle)) return digest.digest() def sapling_spends_compact_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSSpendCHash') for desc in saplingBundle.spends: digest.update(ser_uint256(desc.nullifier)) return digest.digest() def sapling_spends_noncompact_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSSpendNHash') for desc in saplingBundle.spends: digest.update(ser_uint256(desc.cv)) digest.update(ser_uint256(desc.anchor)) digest.update(ser_uint256(desc.rk)) return digest.digest() # - Outputs def sapling_outputs_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSOutputHash') if len(saplingBundle.outputs) > 0: digest.update(sapling_outputs_compact_digest(saplingBundle)) digest.update(sapling_outputs_memos_digest(saplingBundle)) digest.update(sapling_outputs_noncompact_digest(saplingBundle)) return digest.digest() def sapling_outputs_compact_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSOutC__Hash') for desc in saplingBundle.outputs: digest.update(ser_uint256(desc.cmu)) digest.update(ser_uint256(desc.ephemeralKey)) digest.update(desc.encCiphertext[:52]) return digest.digest() def sapling_outputs_memos_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSOutM__Hash') for desc in saplingBundle.outputs: digest.update(desc.encCiphertext[52:564]) return digest.digest() def sapling_outputs_noncompact_digest(saplingBundle): digest = blake2b(digest_size=32, person=b'ZTxIdSOutN__Hash') for desc in saplingBundle.outputs: digest.update(ser_uint256(desc.cv)) digest.update(desc.encCiphertext[564:]) digest.update(desc.outCipherText) return digest.digest() # Orchard def orchard_digest(orchardBundle): digest = blake2b(digest_size=32, person=b'ZTxIdOrchardHash') if len(orchardBundle.actions) > 0: digest.update(orchard_actions_compact_digest(orchardBundle)) digest.update(orchard_actions_memos_digest(orchardBundle)) digest.update(orchard_actions_noncompact_digest(orchardBundle)) digest.update(struct.pack(' 0: digest.update(orchardBundle.proofs) for desc in orchardBundle.actions: digest.update(desc.spendAuthSig.serialize()) digest.update(orchardBundle.bindingSig.serialize()) return digest.digest() # - Actions def orchard_actions_compact_digest(orchardBundle): digest = blake2b(digest_size=32, person=b'ZTxIdOrcActCHash') for desc in orchardBundle.actions: digest.update(ser_uint256(desc.nullifier)) digest.update(ser_uint256(desc.cmx)) digest.update(ser_uint256(desc.ephemeralKey)) digest.update(desc.encCiphertext[:52]) return digest.digest() def orchard_actions_memos_digest(orchardBundle): digest = blake2b(digest_size=32, person=b'ZTxIdOrcActMHash') for desc in orchardBundle.actions: digest.update(desc.encCiphertext[52:564]) return digest.digest() def orchard_actions_noncompact_digest(orchardBundle): digest = blake2b(digest_size=32, person=b'ZTxIdOrcActNHash') for desc in orchardBundle.actions: digest.update(ser_uint256(desc.cv)) digest.update(ser_uint256(desc.rk)) digest.update(desc.encCiphertext[564:]) digest.update(desc.outCiphertext) return digest.digest() # Transaction def header_digest(tx): digest = blake2b(digest_size=32, person=b'ZTxIdHeadersHash') digest.update(struct.pack('