* Fix easy warnings for sdk 2.0 * Add attribute unused to bagl_elemt_t in callback functions * Add attribute unused to io_event function * Clang-format * Use elfs from CI in tests (#167) * Add Nano X build * Use CI's build artifacts for CI's tests * Add network display (#152) * Add network name display instead of chainID * Add display of correct ticker along with network * Add FTM * Clang-format * Add comment in python script * Rename SIZE_MAX to MAX_SIZE * Change %u to %d in printf * Remove needless PIC * Update comment about get_chain_id() * Update example script to follow EIP155 * Remove unused PIC calls * Add whitespace between ticker and amount when using EIP155 * Remove decimal config per network, set back 18 everywhere * Adapt u32_from_BE to swith cases * Remove chainid from signTx.py * Switch to switch in stead of if in get_chain_id * Revert "Remove chainid from signTx.py" This reverts commit 454e09f280ec3e3ec1c7d7cc0027247ef4390088. * Change Ethereum chainid to 1 * Rename chainid_step to network_step * Adapt finalizeParsing to new chainid for Ethereum * Update snapshots * clang-format * Fix network display logic for clones * Fix tests * Add clone tests Co-authored-by: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Co-authored-by: Jean P <10632523+TamtamHero@users.noreply.github.com>
79 lines
2.7 KiB
C
79 lines
2.7 KiB
C
/*******************************************************************************
|
|
* Ledger Ethereum App
|
|
* (c) 2016-2019 Ledger
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
********************************************************************************/
|
|
|
|
#ifndef _ETHUTILS_H_
|
|
#define _ETHUTILS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "cx.h"
|
|
#include "chainConfig.h"
|
|
/**
|
|
* @brief Decode an RLP encoded field - see
|
|
* https://github.com/ethereum/wiki/wiki/RLP
|
|
* @param [in] buffer buffer containing the RLP encoded field to decode
|
|
* @param [out] fieldLength length of the RLP encoded field
|
|
* @param [out] offset offset to the beginning of the RLP encoded field from the
|
|
* buffer
|
|
* @param [out] list true if the field encodes a list, false if it encodes a
|
|
* string
|
|
* @return true if the RLP header is consistent
|
|
*/
|
|
bool rlpDecodeLength(uint8_t *buffer, uint32_t *fieldLength, uint32_t *offset, bool *list);
|
|
|
|
bool rlpCanDecode(uint8_t *buffer, uint32_t bufferLength, bool *valid);
|
|
|
|
void getEthAddressFromKey(cx_ecfp_public_key_t *publicKey, uint8_t *out, cx_sha3_t *sha3Context);
|
|
|
|
void getEthAddressStringFromKey(cx_ecfp_public_key_t *publicKey,
|
|
uint8_t *out,
|
|
cx_sha3_t *sha3Context,
|
|
chain_config_t *chain_config);
|
|
|
|
void getEthAddressStringFromBinary(uint8_t *address,
|
|
uint8_t *out,
|
|
cx_sha3_t *sha3Context,
|
|
chain_config_t *chain_config);
|
|
|
|
bool adjustDecimals(char *src,
|
|
uint32_t srcLength,
|
|
char *target,
|
|
uint32_t targetLength,
|
|
uint8_t decimals);
|
|
|
|
__attribute__((no_instrument_function)) inline int allzeroes(void *buf, size_t n) {
|
|
uint8_t *p = (uint8_t *) buf;
|
|
for (size_t i = 0; i < n; ++i) {
|
|
if (p[i]) {
|
|
return 0;
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
__attribute__((no_instrument_function)) inline int ismaxint(uint8_t *buf, int n) {
|
|
for (int i = 0; i < n; ++i) {
|
|
if (buf[i] != 0xff) {
|
|
return 0;
|
|
}
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
static const char HEXDIGITS[] = "0123456789abcdef";
|
|
|
|
#endif /* _ETHUTILS_H_ */
|