aboutsummaryrefslogtreecommitdiff
path: root/src/ringct (unfollow)
AgeCommit message (Expand)AuthorFilesLines
2021-03-18Fixed issues found by static analysisSChernykh1-1/+1
2020-09-24fix a couple bugs found by OSS-fuzzmoneromooo-monero1-0/+6
2020-09-01threadpool: guard against exceptions in jobs, and armour platingmoneromooo-monero1-6/+9
2020-08-28ringct: fix CLSAG serialization after boost/epee changesmoneromooo-monero2-1/+2
2020-08-27CLSAG device supportSarang Noether2-21/+16
2020-08-27CLSAG optimizationsSarang Noether2-132/+139
2020-08-27Integrate CLSAGs into moneromoneromooo-monero4-60/+265
2020-08-27CLSAG signaturesSarang Noether5-0/+277
2020-08-17replace most boost serialization with existing monero serializationmoneromooo-monero1-1/+28
2020-05-06Update copyright year to 2020SomaticFanatic5-5/+5
2020-04-15use memwipe on secret k/alpha valuesmoneromooo-monero2-1/+7
2020-04-14Bulletproofs: verification speedupSarang Noether3-8/+25
2020-04-01Hash domain separationSarang Noether1-2/+2
2020-02-17remove empty statementsInterchained1-1/+1
2019-11-19make d2h et al. constant-timeJethro Grassie1-30/+8
2019-10-28Updated paper referencesSarang Noether1-24/+22
2019-10-28Minor prover simplificationSarang Noether1-10/+5
2019-10-11cryptonote: add function to get weight from a pruned txmoneromooo-monero1-0/+1
2019-08-27MLSAG speedup and additional checksSarang Noether4-77/+54
2019-06-14serialization: check stream good flag at the endmoneromooo-monero1-4/+4
2019-04-29remove unused codemoneromooo-monero2-2/+0
2019-04-13bulletproofs: cut down on keyV allocationsmoneromooo-monero1-29/+33
2019-04-11ringct: prevent use of full ringct signatures for more than one inputmoneromooo-monero2-0/+3
2019-03-28Add support for V11 protocol with BulletProofV2 and short amount.cslashm1-4/+4
2019-03-25ringct: fix capitalization for scaler multfuwa1-3/+3
2019-03-05Update 2019 copyrightbinaryFate5-5/+5
2019-03-04various: remove unused variablesmoneromooo-monero1-3/+0
2019-01-22ringct: remove unused senderPk from ecdhTuplemoneromooo-monero1-3/+0
2019-01-22ringct: the commitment mask is now deterministicmoneromooo-monero4-26/+51
2019-01-22ringct: encode 8 byte amount, saving 24 bytes per outputmoneromooo-monero4-11/+44
2019-01-22ringct: save 3 bytes on bulletproof sizemoneromooo-monero1-1/+4
2019-01-22add a bulletproof version, new bulletproof type, and rct configmoneromooo-monero4-27/+36
2019-01-19bulletproofs: speed up vector_power_summoneromooo-monero1-6/+22
2019-01-08ringct: remove duplicate rv.mixRing = mixRing; in genRctSimplestoffu1-1/+0
2018-12-12ringct: avoid repeated point conversionmoneromooo-monero1-1/+10
2018-12-01Bulletproof: Initialize members in default construtor.Tadeas Moravec1-1/+2
2018-11-30ringct: fix dummy bulletproofs on ledger in fake modemoneromooo-monero1-7/+24
2018-11-23a few minor (but easy) performance tweaksmoneromooo-monero2-4/+4
2018-11-23rctOps: add braces to suppress warningsstoffu1-173/+173
2018-11-15Removed a lot of unnecessary includesMartijn Otto1-0/+1
2018-11-09bulletproofs: avoid std::vector allocations for slicemoneromooo-monero1-9/+15
2018-11-05bulletproofs: reserve vector memory when known in advancemoneromooo-monero1-0/+2
2018-11-05rct: speedup commit a littlemoneromooo-monero1-6/+3
2018-11-04rct: add a zeroCommit cache for common pre-rct casemoneromooo-monero1-0/+186
2018-11-02device/trezor: trezor support addedDusan Klinec1-1/+1
2018-10-23ringct: use dummy bulletproofs when in fake mode, for speedmoneromooo-monero1-8/+41
2018-10-22multiexp: some minor speedupsmoneromooo-monero1-13/+35
2018-10-22bulletproofs: only enable profiling on requestmoneromooo-monero1-28/+34
2018-10-22multiexp: tune which variants to use for which number of pointsmoneromooo-monero2-14/+30
2018-10-22bulletproofs: speedup provermoneromooo-monero1-17/+37
2018-10-22multiexp: handle pippenger multiexps with part precalcmoneromooo-monero3-19/+27
2018-10-22bulletproofs: maintain -z4, -z5, and -y0 to avoid subtractionsmoneromooo-monero1-11/+8
2018-10-22bulletproofs: rework flow to use sarang's fast batch inversion codemoneromooo-monero1-78/+155
2018-10-22bulletproofs: merge multiexps as per sarang's new python codemoneromooo-monero1-68/+38
2018-10-22multiexp: pack the digits table when STRAUS_C is 4moneromooo-monero1-12/+13
2018-10-22bulletproofs: some more minor speedupmoneromooo-monero1-6/+4
2018-10-22bulletproofs: remove single value provermoneromooo-monero2-291/+2
2018-10-22bulletproofs: some more speedupmoneromooo-monero1-15/+19
2018-10-22bulletproofs: random minor speedupsmoneromooo-monero1-40/+38
2018-10-22bulletproofs: shave off a lot of scalar muls from the g/h constructionmoneromooo-monero1-20/+39
2018-10-22bulletproofs: speedup PROVEmoneromooo-monero1-64/+58
2018-09-24bulletproofs: multiply points by 8 first thing in verificationmoneromooo-monero1-15/+17
2018-09-14rct: avoid repeated unnecessary conversions when accummulatingmoneromooo-monero3-7/+25
2018-09-12rctTypes: fix incorrect serializationstoffu1-2/+2
2018-09-11bulletproofs: #include <openssl/bn.h>moneromooo-monero1-0/+1
2018-09-11bulletproofs: speed up the latest changes a bitmoneromooo-monero4-34/+54
2018-09-11bulletproofs: scale points by 8 to ensure subgroup validitymoneromooo-monero3-18/+32
2018-09-11bulletproofs: match aggregated verification to sarang's latest prototypemoneromooo-monero1-64/+39
2018-09-11more comprehensive test for ge_p3 comparison to identity/point at infinitymoneromooo-monero1-6/+6
2018-09-11multiexp: fix maxscalar off by onemoneromooo-monero1-1/+1
2018-09-11ringct: error out when hashToPoint* returns the point at infinitymoneromooo-monero2-1/+4
2018-09-11ringct: prevent a potential very large allocationmoneromooo-monero1-2/+2
2018-09-11multiexp: fix wrong Bos-Coster result for 1 non trivial inputmoneromooo-monero1-3/+7
2018-09-11Check inputs to addKeys are in rangemoneromooo-monero1-0/+4
2018-09-11bulletproofs: reject x, y, z, or w[i] being zeromoneromooo-monero1-2/+63
2018-09-11v8: per byte fee, pad bulletproofs, fixed 11 ring sizemoneromooo-monero3-5/+64
2018-09-11bulletproofs: a few fixes from the Kudelski reviewmoneromooo-monero2-3/+22
2018-09-11bulletproofs: reject points not in the main subgroupmoneromooo-monero3-0/+33
2018-09-11bulletproofs: speed up a few multiplies using existing Hi cachemoneromooo-monero1-2/+11
2018-09-11Add Pippenger cache and limit Straus cache sizemoneromooo-monero3-30/+82
2018-09-11Pippenger multiexpmoneromooo-monero3-3/+138
2018-09-11multiexp: cut down on memory allocationsmoneromooo-monero1-15/+13
2018-09-11precalc the ge_p3 representation of Hmoneromooo-monero2-14/+12
2018-09-11Add a define for the max number of bulletproof multi-outputsmoneromooo-monero2-2/+3
2018-09-11Bulletproof aggregated verification and testsmoneromooo-monero4-91/+83
2018-09-11multiexp: some speedupsmoneromooo-monero3-28/+121
2018-09-11bulletproofs: add aggregated verificationmoneromooo-monero4-229/+336
2018-09-11make straus cached mode thread safe, and add tests for itmoneromooo-monero3-31/+67
2018-09-11multiexp: bos coster now works for just one pointmoneromooo-monero1-1/+11
2018-09-11bulletproofs: add multi output bulletproofs to rctmoneromooo-monero4-72/+125
2018-09-11add Straus multiexpmoneromooo-monero3-150/+182
2018-09-11ringct: add bos coster multiexpmoneromooo-monero4-51/+455
2018-09-11bulletproofs: misc optimizationsmoneromooo-monero1-23/+87
2018-09-11bulletproofs: multi-output bulletproofsmoneromooo-monero3-32/+320
2018-09-04ringct: make conversion functions return const refsmoneromooo-monero1-8/+8
2018-08-23add and use constant time 32 byte equality functionmoneromooo-monero1-7/+8
2018-08-16Do memwipe for critical secret keys copied to rct::keystoffu1-2/+6
2018-08-02Fixed ZMQ-RPC for transactions and GET_BLOCKS_FASTLee Clagett1-0/+10
2018-07-05crypto: remove slight bias in key generation due to modulomoneromooo-monero1-6/+4
2018-06-26threadpool: allow leaf functions to run concurrentlymoneromooo-monero1-6/+6
2018-06-23Changed URLs to HTTPSeinsteinsfool3-14/+14
2018-06-06ringct: remove an unnecessary scalarmultBase in zeroCommitmoneromooo-monero2-4/+2
2018-05-04ringct: do not show verification errors with default settingsmoneromooo-monero1-4/+6
2018-03-14device: untangle cyclic depenencystoffu5-87/+31
2018-03-08ringct: 17% improvement in Borromean signature verificationmoneromooo-monero1-9/+36
2018-03-05remove unused function keyImageVh9087141242-20/+0
2018-03-04Code modifications to integrate Ledger HW device into monero-wallet-cli.cslashm5-48/+124
2018-02-21rctSigs - loop invariant code removed from the loopDusan Klinec1-2/+3
2018-02-02ringct: fix infinite loop in unused h2b functionmoneromooo-monero1-0/+1
2018-01-31bulletproofs: more robust challenge computationmoneromooo-monero1-56/+47
2018-01-31ringct: pseudoOuts moved to prunable in the simple bulletproof casemoneromooo-monero2-12/+66
2018-01-26Readd copyright starting datexmr-eric3-3/+3
2018-01-26Update 2018 copyrightxmr-eric5-5/+5
2018-01-15ringct: handle exceptions verifying bulletproofs in worker threadsmoneromooo-monero1-4/+11
2017-12-22factor STL container serializationmoneromooo-monero1-1/+1
2017-12-18check accessing an element past the end of a containermoneromooo-monero1-0/+3
2017-12-17N-1/N multisigmoneromooo-monero1-0/+5
2017-12-17Add N/N multisig tx generation and signingmoneromooo-monero3-29/+116
2017-12-16move includes around to lessen overall loadmoneromooo-monero1-0/+1
2017-12-09ringct: always use outPk.mask to decode amountsmoneromooo-monero1-19/+3
2017-12-09ringct: do not include bulletproof commitments in signed messagemoneromooo-monero1-3/+3
2017-12-08add bulletproofs from v7 on testnetmoneromooo-monero2-41/+90
2017-12-08bulletproofs: switch H/G in Pedersen commitments to match rctmoneromooo-monero1-13/+14
2017-12-08integrate bulletproofs into moneromoneromooo-monero4-55/+113
2017-12-08add bulletproofs to the build, with basic unit testsmoneromooo-monero3-2/+843
2017-12-07add a version of ge_double_scalarmult_precomp_vartime with A precompmoneromooo-monero2-0/+10
2017-12-07ringct: add a version of addKeys which returns the resultmoneromooo-monero2-0/+6
2017-11-14remove "using namespace std" from headersmoneromooo-monero3-29/+15
2017-10-07Subaddresseskenshi841-0/+2
2017-09-14Use a threadpoolHoward Chu1-26/+23
2017-05-23changed crypto to cncrypto so it generated libcncryptoGentian1-1/+1
2017-04-11Simplified the implementation and features of spanLee Clagett1-1/+4
2017-04-11Improvements for epee binary to hex functions:Lee Clagett1-2/+2
2017-03-22ringct: move ge_frombytes_vartime failure error to warningmoneromooo-monero1-11/+13
2017-02-27ringct: do not require range proof in decodeRct/decodeRctSimplemoneromooo-monero1-4/+2
2017-02-21update copyright year, fix occasional lack of newline at line endRiccardo Spagni2-2/+2
2017-02-20core: test key images against validity domainmoneromooo-monero1-0/+4
2017-02-08extract some basic code from libcryptonote_core into libcryptonote_basickenshi842-1/+2
2017-01-26Fix clang build failure, caused by mixing C and C++Timothy D. Prime1-1/+1
2017-01-21ringct: reorder a bit to check quicker tests firstmoneromooo-monero1-17/+17
2017-01-16Change logging to easylogging++moneromooo-monero3-0/+9
2017-01-14rct: split rct checks between semantics and othermoneromooo-monero2-78/+101
2017-01-14add extra braces around subobjects (missing-braces warning)Chris Vickio1-64/+64
2016-12-19Removed unused functionsLee Clagett1-16/+0
2016-12-14fix MGs jsonmoneroexamples1-3/+3
2016-12-12Tx verification failing is not an errorluigi11111-5/+5
2016-12-07ringct: add sc_check calls in MLSAG_Ver for ss and ccmoneromooo-monero1-0/+5
2016-12-07ringct: guard against bad data exceptions in worker threadsmoneromooo-monero1-0/+14
2016-12-04ringct: luigi1111's changes to fix and speedup Borromean sigsluigi11111-16/+15
2016-12-04ringct: switch to Borromean signaturesShen Noether5-114/+88
2016-12-02ringct: fix MGs serialization to JSONmoneromooo-monero1-1/+5
2016-11-23Added task_region - a fork/join task implementationLee Clagett1-60/+45
2016-11-02adding thread_group for managing async tasksLee Clagett1-98/+50
2016-10-29ringct: check the size of amount_keys is the same as destinationsmoneromooo-monero1-0/+2
2016-10-29ringct: always shutdown the boost io servicemoneromooo-monero1-3/+3
2016-10-23ringct: some more small optimizationsmoneromooo-monero2-58/+25
2016-10-15ringct: thread verRct and verRctSimplemoneromooo-monero1-17/+119
2016-10-15ringct: remove unneeded type conversionsmoneromooo-monero2-3/+3
2016-10-15ringct: reserve space in vectors to avoid excessive reallocationmoneromooo-monero1-0/+2
2016-10-15ringct: avoid unnecessary memcpymoneromooo-monero1-16/+3
2016-10-15ringct: add a few consts where possiblemoneromooo-monero1-4/+4
2016-10-15ringct: pass vectors by const ref where possiblemoneromooo-monero2-4/+4
2016-10-10Add performance timers for ringct tx verificationmoneromooo-monero1-0/+7
2016-10-08ringct: use const refs as parameters where appropriatemoneromooo-monero3-5/+5
2016-09-26Dropped "bit" from bitmonero.Randi Joseph1-2/+2
2016-09-26Dropped "bit" from bitmonero.Randi Joseph1-2/+2
2016-09-18cmake: transitive deps and remove deprecated LINK_*redfish1-8/+2
2016-09-14rct: rework serialization to avoid storing vector sizesmoneromooo-monero2-36/+130
2016-08-28ringct: remove unused codemoneromooo-monero1-245/+0
2016-08-28ringct: pass structure by const ref, not valuemoneromooo-monero2-2/+2
2016-08-28ringct: use memcpy/memset instead of handwritten loop where appropriatemoneromooo-monero1-29/+11
2016-08-28ringct: remove spurious copiesmoneromooo-monero1-24/+4
2016-08-28rct: faster Cryptonote/rct conversionsmoneromooo-monero1-8/+8
2016-08-28rct: early out on failure on verRangemoneromooo-monero1-3/+5
2016-08-28ringct: use Cryptonote serialization to hash non prunable datamoneromooo-monero1-21/+9
2016-08-28New "Halfway RingCT" outputs for coinbase transactionsmoneromooo-monero1-2/+7
2016-08-28rct: log why verification failsmoneromooo-monero1-9/+13
2016-08-28rct: serialize txnFee as varintmoneromooo-monero1-1/+1
2016-08-28rct amount key modified as per luigi1111's recommendationsmoneromooo-monero4-42/+12
2016-08-28rct: rework v2 txes into prunable and non prunable datamoneromooo-monero2-31/+43
2016-08-28rct: rework the verification preparation processmoneromooo-monero2-63/+77
2016-08-28rct: change the simple flag to a typemoneromooo-monero2-10/+14
2016-08-28rct: avoid the need for the last II elementShen Noether3-33/+44
2016-08-28rct: do not serialize senderPk - it is not used anymoremoneromooo-monero1-1/+1
2016-08-28rct: make the amount key derivable by a third party with the tx keymoneromooo-monero5-24/+52
2016-08-28rct: do not serialize public keys in outPkmoneromooo-monero3-17/+29
2016-08-28rct: use the already defined H where possiblemoneromooo-monero1-2/+1
2016-08-28port get_tx_key/check_tx_key to rctmoneromooo-monero2-8/+10
2016-08-28integrate simple rct apimoneromooo-monero3-67/+76
2016-08-28ringct: optimization/cleanup of hash functionsShen Noether3-22/+45
2016-08-28ringct: "simple" ringct variantShen Noether5-3/+249
2016-08-28ringct: fix size unit mismatch calling keccakmoneromooo-monero1-1/+1
2016-08-28ringct: do not serialize what can be reconstructedmoneromooo-monero3-21/+43
2016-08-28ringct: catch errors from ge_frombytes_vartimemoneromooo-monero1-11/+12
2016-08-28ringct: add missing size check for ecdhInfomoneromooo-monero1-0/+1
2016-08-28ringct: change asserts to return false for boolean functionsmoneromooo-monero1-10/+10
2016-08-28add rct to the protocolmoneromooo-monero1-15/+23
2016-08-28ringct: add functions to commit to an amountmoneromooo-monero2-0/+21
2016-08-28make rct tx serialization workmoneromooo-monero1-0/+48
2016-08-28ringct: allow no outputs, and add tests for this and feesmoneromooo-monero1-2/+0