aboutsummaryrefslogtreecommitdiff
path: root/tests/core_tests/multisig.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-16Copyright: Update to 2023mj-xmr1-1/+1
Co-authored-by: plowsof <plowsof@protonmail.com> extra files
2022-07-13derive multisig tx secret keys from an entropy source plus the tx inputs' ↵koe1-2/+3
key images
2022-06-30multisig: fix critical vulnerabilities in signinganon1-96/+85
2022-05-10Merge pull request #8277luigi11111-2/+0
baee2c0 Preserve commitment format inside transactions (kayabaNerve)
2022-05-10Merge pull request #8220luigi11111-6/+2
0d6ecb1 multisig: add post-kex verification round to check that all participants have completed the multisig address (koe)
2022-04-29multisig: add post-kex verification round to check that all participants ↵koe1-6/+2
have completed the multisig address
2022-04-21Preserve commitment format inside transactionsLuke Parker1-2/+0
2022-04-06Merge pull request #8197luigi11111-1/+1
da9aa1f Copyright: Update to 2022 (mj-xmr)
2022-04-05store outPk/8 in the tx for speedmoneromooo-monero1-0/+2
It avoids dividing by 8 when deserializing a tx, which is a slow operation, and multiplies by 8 when verifying and extracing the amount, which is much faster as well as less frequent
2022-04-05plug bulletproofs plus into consensusmoneromooo-monero1-4/+9
2022-03-04Copyright: Update to 2022mj-xmr1-1/+1
2022-02-22multisig key exchange update and refactorkoe1-68/+58
2020-08-27Integrate CLSAGs into moneromoneromooo-monero1-34/+34
They are allowed from v12, and MLSAGs are rejected from v13.
2020-05-06Update copyright year to 2020SomaticFanatic1-1/+1
Update copyright year to 2020
2019-10-30core_tests: remove some useless verbose logsmoneromooo-monero1-2/+0
2019-03-05Update 2019 copyrightbinaryFate1-1/+1
2019-01-22ringct: encode 8 byte amount, saving 24 bytes per outputmoneromooo-monero1-1/+1
Found by knaccc
2019-01-22add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero1-1/+1
This makes it easier to modify the bulletproof format
2018-12-22core_tests: rename invalid multisig tests to read "invalid"moneromooo-monero1-4/+4
2018-10-01Multisig M/N functionality core tests addednaughtyfox1-1/+151
2018-09-11bulletproofs: add multi output bulletproofs to rctmoneromooo-monero1-1/+1
2018-03-04Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm1-2/+2
The basic approach it to delegate all sensitive data (master key, secret ephemeral key, key derivation, ....) and related operations to the device. As device has low memory, it does not keep itself the values (except for view/spend keys) but once computed there are encrypted (with AES are equivalent) and return back to monero-wallet-cli. When they need to be manipulated by the device, they are decrypted on receive. Moreover, using the client for storing the value in encrypted form limits the modification in the client code. Those values are transfered from one C-structure to another one as previously. The code modification has been done with the wishes to be open to any other hardware wallet. To achieve that a C++ class hw::Device has been introduced. Two initial implementations are provided: the "default", which remaps all calls to initial Monero code, and the "Ledger", which delegates all calls to Ledger device.
2018-01-26Readd copyright starting datexmr-eric1-1/+1
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2017-12-17core_tests: multisig test now tests multiple inputsmoneromooo-monero1-134/+193
2017-12-17make multisig work with subaddressesmoneromooo-monero1-7/+11
Thanks to kenshi84 for help getting this work
2017-12-17add multisig core test and factor multisig building blocksmoneromooo-monero1-0/+460