/* * This file is part of the Trezor project, https://trezor.io/ * * Copyright (C) 2018 alepop * * This library is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library. If not, see . */ #ifndef __LISK_H__ #define __LISK_H__ #include #include "bip32.h" #include "messages-lisk.pb.h" #define MAX_LISK_ADDRESS_SIZE 23 void lisk_sign_message(const HDNode *node, const LiskSignMessage *msg, LiskMessageSignature *resp); bool lisk_verify_message(const LiskVerifyMessage *msg); void lisk_sign_tx(const HDNode *node, LiskSignTx *msg, LiskSignedTx *resp); // Helpers void lisk_get_address_from_public_key(const uint8_t *public_key, char *address); // Layout void layoutLiskPublicKey(const uint8_t *pubkey); void layoutLiskVerifyAddress(const char *address); void layoutRequireConfirmTx(char *recipient_id, uint64_t amount); void layoutRequireConfirmDelegateRegistration(LiskTransactionAsset *asset); void layoutRequireConfirmCastVotes(LiskTransactionAsset *asset); void layoutRequireConfirmMultisig(LiskTransactionAsset *asset); void layoutRequireConfirmFee(uint64_t fee, uint64_t amount); #endif