diff options
author | cslashm <cslashm@gmail.com> | 2018-12-11 10:20:21 +0100 |
---|---|---|
committer | cslashm <cslashm@gmail.com> | 2019-03-28 18:26:15 +0100 |
commit | 98fdcb2aa5a1c64bad4080ad00e4bd7eb647dc74 (patch) | |
tree | 0a69b1f57abe2b61e8f3eb532c9aa0ec0eb7927a /src/device/device_default.cpp | |
parent | Add application version compatibility check. (diff) | |
download | monero-98fdcb2aa5a1c64bad4080ad00e4bd7eb647dc74.tar.xz |
Add support for V11 protocol with BulletProofV2 and short amount.
New scheme key destination contrfol
Fix dummy decryption in debug mode
Diffstat (limited to 'src/device/device_default.cpp')
-rw-r--r-- | src/device/device_default.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/device/device_default.cpp b/src/device/device_default.cpp index 999fbc22f..db0827c22 100644 --- a/src/device/device_default.cpp +++ b/src/device/device_default.cpp @@ -349,6 +349,10 @@ namespace hw { return true; } + rct::key device_default::genCommitmentMask(const rct::key &amount_key) { + return rct::genCommitmentMask(amount_key); + } + bool device_default::ecdhEncode(rct::ecdhTuple & unmasked, const rct::key & sharedSec, bool short_amount) { rct::ecdhEncode(unmasked, sharedSec, short_amount); return true; |