aboutsummaryrefslogtreecommitdiff
path: root/tests/performance_tests/rct_mlsag.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2022-07-13 00:38:29 -0400
committerluigi1111 <luigi1111w@gmail.com>2022-07-13 00:38:29 -0400
commit6fed8c2d9f028d9cf175c2e7ce53951cb164b657 (patch)
treec2e151884b4aeafb8b42c0fb65a4c7eba68896a4 /tests/performance_tests/rct_mlsag.h
parentMerge pull request #8413 (diff)
parentmultisig: fix critical vulnerabilities in signing (diff)
downloadmonero-6fed8c2d9f028d9cf175c2e7ce53951cb164b657.tar.xz
Merge pull request #8149
c7b2944 multisig: fix critical vulnerabilities in signing (anon)
Diffstat (limited to '')
-rw-r--r--tests/performance_tests/rct_mlsag.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/performance_tests/rct_mlsag.h b/tests/performance_tests/rct_mlsag.h
index 4cdbcd601..2163431fe 100644
--- a/tests/performance_tests/rct_mlsag.h
+++ b/tests/performance_tests/rct_mlsag.h
@@ -65,7 +65,7 @@ public:
{
sk[j] = xm[ind][j];
}
- IIccss = MLSAG_Gen(rct::identity(), P, sk, NULL, NULL, ind, rows-1, hw::get_device("default"));
+ IIccss = MLSAG_Gen(rct::identity(), P, sk, ind, rows-1, hw::get_device("default"));
return true;
}
@@ -75,7 +75,7 @@ public:
if (ver)
MLSAG_Ver(rct::identity(), P, IIccss, rows-1);
else
- MLSAG_Gen(rct::identity(), P, sk, NULL, NULL, ind, rows-1, hw::get_device("default"));
+ MLSAG_Gen(rct::identity(), P, sk, ind, rows-1, hw::get_device("default"));
return true;
}