mirror of
https://github.com/planetmint/planetmint.git
synced 2025-03-30 15:08:31 +00:00

* * **Changed** adjusted to zenroom calling convention of PRP #13 (breaking change) * **Changed** zenroom test cases to comply to the new calling convention * **Fixed** zenroom signing bug (call of wrong function) * **Changed** using cryptoconditions 0.10.0 * **Deprecated** usage of ripde160md as a address generation algorithm, isn't available from python 3.9.14 on, skipping these tests from now on. * **Changed** script/ouptut tag to be of type array or object for schema v3.0 and v2.0 * **Changed** added 'script' handling to the common/transactions.py class * **Fixed** data input handling to the transaction fullfillment methods Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * connected the version string in the banner of 'planetmint start' to the planetmint/version.py variables. Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * added input validation to the transaction script parsing and passing Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * added backend support for the scripts Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * adjusted tests to the new zenroom calling convention Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * blackified the code Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * increased version to 1.1.0 Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> * fixed docs building issues of dependency inheritance Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com> Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
100 lines
2.8 KiB
Python
100 lines
2.8 KiB
Python
# Copyright © 2020 Interplanetary Database Association e.V.,
|
|
# Planetmint and IPDB software contributors.
|
|
# SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
|
# Code is Apache-2.0 and docs are CC-BY-4.0
|
|
|
|
import base64
|
|
import hashlib
|
|
import json
|
|
from binascii import hexlify
|
|
|
|
try:
|
|
from hashlib import sha3_256
|
|
except ImportError:
|
|
from sha3 import sha3_256
|
|
|
|
|
|
def encode_transaction(value):
|
|
"""Encode a transaction (dict) to Base64."""
|
|
|
|
return base64.b64encode(json.dumps(value).encode("utf8")).decode("utf8")
|
|
|
|
|
|
def decode_transaction(raw):
|
|
"""Decode a transaction from bytes to a dict."""
|
|
|
|
return json.loads(raw.decode("utf8"))
|
|
|
|
|
|
def decode_transaction_base64(value):
|
|
"""Decode a transaction from Base64."""
|
|
|
|
return json.loads(base64.b64decode(value.encode("utf8")).decode("utf8"))
|
|
|
|
|
|
def calculate_hash(key_list):
|
|
if not key_list:
|
|
return ""
|
|
|
|
full_hash = sha3_256()
|
|
for key in key_list:
|
|
full_hash.update(key.encode("utf8"))
|
|
|
|
return full_hash.hexdigest()
|
|
|
|
|
|
def merkleroot(hashes):
|
|
"""Computes the merkle root for a given list.
|
|
|
|
Args:
|
|
hashes (:obj:`list` of :obj:`bytes`): The leaves of the tree.
|
|
|
|
Returns:
|
|
str: Merkle root in hexadecimal form.
|
|
|
|
"""
|
|
# XXX TEMPORARY -- MUST REVIEW and possibly CHANGE
|
|
# The idea here is that the UTXO SET would be empty and this function
|
|
# would be invoked to compute the merkle root, and since there is nothing,
|
|
# i.e. an empty list, then the hash of the empty string is returned.
|
|
# This seems too easy but maybe that is good enough? TO REVIEW!
|
|
if not hashes:
|
|
return sha3_256(b"").hexdigest()
|
|
# XXX END TEMPORARY -- MUST REVIEW ...
|
|
if len(hashes) == 1:
|
|
return hexlify(hashes[0]).decode()
|
|
if len(hashes) % 2 == 1:
|
|
hashes.append(hashes[-1])
|
|
parent_hashes = [sha3_256(hashes[i] + hashes[i + 1]).digest() for i in range(0, len(hashes) - 1, 2)]
|
|
return merkleroot(parent_hashes)
|
|
|
|
|
|
# ripemd160 is only available below python 3.9.13
|
|
@DeprecationWarning
|
|
def public_key64_to_address(base64_public_key):
|
|
"""Note this only compatible with Tendermint 0.19.x"""
|
|
ed25519_public_key = public_key_from_base64(base64_public_key)
|
|
encoded_public_key = amino_encoded_public_key(ed25519_public_key)
|
|
return hashlib.new("ripemd160", encoded_public_key).hexdigest().upper()
|
|
|
|
|
|
def public_key_from_base64(base64_public_key):
|
|
return key_from_base64(base64_public_key)
|
|
|
|
|
|
def key_from_base64(base64_key):
|
|
return base64.b64decode(base64_key).hex().upper()
|
|
|
|
|
|
def public_key_to_base64(ed25519_public_key):
|
|
return key_to_base64(ed25519_public_key)
|
|
|
|
|
|
def key_to_base64(ed25519_key):
|
|
ed25519_key = bytes.fromhex(ed25519_key)
|
|
return base64.b64encode(ed25519_key).decode("utf-8")
|
|
|
|
|
|
def amino_encoded_public_key(ed25519_public_key):
|
|
return bytes.fromhex("1624DE6220{}".format(ed25519_public_key))
|