aboutsummaryrefslogtreecommitdiff
path: root/src/device/device.hpp
diff options
context:
space:
mode:
authorcslashm <cslashm@gmail.com>2019-03-21 17:22:43 +0100
committercslashm <cslashm@gmail.com>2019-03-28 18:26:15 +0100
commit7c44091541ece919de11754a62c3070f7c2ad948 (patch)
tree97d4742462b3ee84c511a41baa4a660cccd31ec3 /src/device/device.hpp
parentAdd support for V11 protocol with BulletProofV2 and short amount. (diff)
downloadmonero-7c44091541ece919de11754a62c3070f7c2ad948.tar.xz
Add get_tx_proof support, needed for new sanity check
Enhance debug info
Diffstat (limited to 'src/device/device.hpp')
-rw-r--r--src/device/device.hpp19
1 files changed, 4 insertions, 15 deletions
diff --git a/src/device/device.hpp b/src/device/device.hpp
index 33e1337c4..2e485b1d6 100644
--- a/src/device/device.hpp
+++ b/src/device/device.hpp
@@ -27,21 +27,6 @@
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
-
-/* 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.
- */
-
-
#pragma once
#include "crypto/crypto.h"
@@ -211,6 +196,10 @@ namespace hw {
/* TRANSACTION */
/* ======================================================================= */
+ virtual void generate_tx_proof(const crypto::hash &prefix_hash,
+ const crypto::public_key &R, const crypto::public_key &A, const boost::optional<crypto::public_key> &B, const crypto::public_key &D, const crypto::secret_key &r,
+ crypto::signature &sig) = 0;
+
virtual bool open_tx(crypto::secret_key &tx_key) = 0;
virtual bool encrypt_payment_id(crypto::hash8 &payment_id, const crypto::public_key &public_key, const crypto::secret_key &secret_key) = 0;