diff options
author | cslashm <cslashm@gmail.com> | 2019-03-21 17:22:43 +0100 |
---|---|---|
committer | cslashm <cslashm@gmail.com> | 2019-03-28 18:26:15 +0100 |
commit | 7c44091541ece919de11754a62c3070f7c2ad948 (patch) | |
tree | 97d4742462b3ee84c511a41baa4a660cccd31ec3 /src/device/log.hpp | |
parent | Add support for V11 protocol with BulletProofV2 and short amount. (diff) | |
download | monero-7c44091541ece919de11754a62c3070f7c2ad948.tar.xz |
Add get_tx_proof support, needed for new sanity check
Enhance debug info
Diffstat (limited to 'src/device/log.hpp')
-rw-r--r-- | src/device/log.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/device/log.hpp b/src/device/log.hpp index fb7ba1fb0..bfe6e9edc 100644 --- a/src/device/log.hpp +++ b/src/device/log.hpp @@ -40,6 +40,19 @@ namespace hw { + /* Note about debug: + * To debug Device you can def the following : + * #define DEBUG_HWDEVICE + * Activate debug mechanism: + * - Add more trace + * - All computation done by device are checked by default device. + * Required IODUMMYCRYPT_HWDEVICE or IONOCRYPT_HWDEVICE for fully working + * #define IODUMMYCRYPT_HWDEVICE 1 + * - It assumes sensitive data encryption is is off on device side. a XOR with 0x55. This allow Ledger Class to make check on clear value + * #define IONOCRYPT_HWDEVICE 1 + * - It assumes sensitive data encryption is off on device side. + */ + void buffer_to_str(char *to_buff, size_t to_len, const char *buff, size_t len) ; void log_hexbuffer(const std::string &msg, const char* buff, size_t len); void log_message(const std::string &msg, const std::string &info ); |