diff options
author | Sarang Noether <32460187+SarangNoether@users.noreply.github.com> | 2020-03-27 15:29:32 -0400 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-08-27 12:44:04 +0000 |
commit | 703944c4d4faf6ad86a69ec3808a87b20ce76a32 (patch) | |
tree | 3e76cbbbe8b3e0ceffb142babc25385c233d488c /src/device/device_default.hpp | |
parent | Added balance check to MLSAG/CLSAG performance tests (diff) | |
download | monero-703944c4d4faf6ad86a69ec3808a87b20ce76a32.tar.xz |
CLSAG device support
Diffstat (limited to 'src/device/device_default.hpp')
-rw-r--r-- | src/device/device_default.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/device/device_default.hpp b/src/device/device_default.hpp index bdd99f89c..2493bd67d 100644 --- a/src/device/device_default.hpp +++ b/src/device/device_default.hpp @@ -134,6 +134,10 @@ namespace hw { bool mlsag_hash(const rct::keyV &long_message, rct::key &c) override; bool mlsag_sign(const rct::key &c, const rct::keyV &xx, const rct::keyV &alpha, const size_t rows, const size_t dsRows, rct::keyV &ss) override; + bool clsag_prepare(const rct::key &p, const rct::key &z, rct::key &I, rct::key &D, const rct::key &H, rct::key &a, rct::key &aG, rct::key &aH) override; + bool clsag_hash(const rct::keyV &data, rct::key &hash) override; + bool clsag_sign(const rct::key &c, const rct::key &a, const rct::key &p, const rct::key &z, const rct::key &mu_P, const rct::key &mu_C, rct::key &s) override; + bool close_tx(void) override; }; |