def get_blockchain_compat_hash(data_txt): """ Generate a hash suitable for embedding into the blockchain (e.g. for user zonefiles and announcements). """ return hex_hash160(data_txt)
def get_zonefile_data_hash(data_txt): """ Generate a hash over a user's zonefile. Return the hex string. """ return hex_hash160(data_txt)