diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-06-09 13:02:16 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-08-27 12:44:04 +0000 |
commit | 82ee01699c2b910e44fd7362bd47d3a1cc9c26af (patch) | |
tree | 5dcce86d8b82e8dab9821bae6120252c27c864f1 /tests/performance_tests/sig_clsag.h | |
parent | unit_tests: add ge_triple_scalarmult_base_vartime test (diff) | |
download | monero-82ee01699c2b910e44fd7362bd47d3a1cc9c26af.tar.xz |
Integrate CLSAGs into monero
They are allowed from v12, and MLSAGs are rejected from v13.
Diffstat (limited to 'tests/performance_tests/sig_clsag.h')
-rw-r--r-- | tests/performance_tests/sig_clsag.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/performance_tests/sig_clsag.h b/tests/performance_tests/sig_clsag.h index 0873fa520..2f738679c 100644 --- a/tests/performance_tests/sig_clsag.h +++ b/tests/performance_tests/sig_clsag.h @@ -60,7 +60,7 @@ public: P[l] = rct::scalarmultBase(p); C[l] = rct::scalarmultBase(z); - sig = CLSAG_Gen(rct::identity(),P,p,C,z,l,NULL); + sig = CLSAG_Gen(rct::identity(),P,p,C,z,l); return true; } @@ -70,7 +70,7 @@ public: if (ver) return CLSAG_Ver(rct::identity(),P,C,sig); else - CLSAG_Gen(rct::identity(),P,p,C,z,l,NULL); + CLSAG_Gen(rct::identity(),P,p,C,z,l); return true; } |