/* * This file is part of the TREZOR project. * * 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 __STELLAR_H__ #define __STELLAR_H__ #include #include "bip32.h" #include "crypto.h" #include "messages.pb.h" #include "fsm.h" typedef struct { // BIP32 path to the address being used for signing uint32_t address_n[10]; size_t address_n_count; uint8_t signing_pubkey[32]; // 1 - public network, 2 - official testnet, 3 - other private network uint8_t network_type; // Total number of operations expected uint8_t num_operations; // Number that have been confirmed by the user uint8_t confirmed_operations; // sha256 context that will eventually be signed SHA256_CTX sha256_ctx; } StellarTransaction; // Signing process void stellar_signingInit(StellarSignTx *tx); void stellar_signingAbort(void); void stellar_confirmCreateAccountOp(StellarCreateAccountOp *msg); void stellar_confirmPaymentOp(StellarPaymentOp *msg); void stellar_confirmPathPaymentOp(StellarPathPaymentOp *msg); void stellar_confirmManageOfferOp(StellarManageOfferOp *msg); void stellar_confirmCreatePassiveOfferOp(StellarCreatePassiveOfferOp *msg); void stellar_confirmSetOptionsOp(StellarSetOptionsOp *msg); void stellar_confirmChangeTrustOp(StellarChangeTrustOp *msg); void stellar_confirmAllowTrustOp(StellarAllowTrustOp *msg); void stellar_confirmAccountMergeOp(StellarAccountMergeOp *msg); void stellar_confirmManageDataOp(StellarManageDataOp *msg); void stellar_confirmBumpSequenceOp(StellarBumpSequenceOp *msg); // Layout void stellar_layoutTransactionDialog(const char *line1, const char *line2, const char *line3, const char *line4, const char *line5); void stellar_layoutTransactionSummary(StellarSignTx *msg); void stellar_layoutSigningDialog(const char *line1, const char *line2, const char *line3, const char *line4, const char *line5, uint32_t *address_n, size_t address_n_count, const char *warning, bool is_final_step); // Helpers HDNode *stellar_deriveNode(uint32_t *address_n, size_t address_n_count); size_t stellar_publicAddressAsStr(uint8_t *bytes, char *out, size_t outlen); const char **stellar_lineBreakAddress(uint8_t *addrbytes); void stellar_hashupdate_uint32(uint32_t value); void stellar_hashupdate_uint64(uint64_t value); void stellar_hashupdate_bool(bool value); void stellar_hashupdate_string(uint8_t *data, size_t len); void stellar_hashupdate_address(uint8_t *address_bytes); void stellar_hashupdate_asset(StellarAssetType *asset); void stellar_hashupdate_bytes(uint8_t *data, size_t len); StellarTransaction *stellar_getActiveTx(void); void stellar_fillSignedTx(StellarSignedTx *resp); uint8_t stellar_allOperationsConfirmed(void); void stellar_getSignatureForActiveTx(uint8_t *out_signature); void stellar_format_uint32(uint32_t number, char *out, size_t outlen); void stellar_format_uint64(uint64_t number, char *out, size_t outlen); void stellar_format_stroops(uint64_t number, char *out, size_t outlen); void stellar_format_asset(StellarAssetType *asset, char *str_formatted, size_t len); void stellar_format_price(uint32_t numerator, uint32_t denominator, char *out, size_t outlen); uint16_t stellar_crc16(uint8_t *bytes, uint32_t length); #endif