Monero
Toggle main menu visibility
Loading...
Searching...
No Matches
tests
performance_tests
bulletproof_plus.h
Go to the documentation of this file.
1
// Copyright (c) 2014-2022, The Monero Project
2
//
3
// All rights reserved.
4
//
5
// Redistribution and use in source and binary forms, with or without modification, are
6
// permitted provided that the following conditions are met:
7
//
8
// 1. Redistributions of source code must retain the above copyright notice, this list of
9
// conditions and the following disclaimer.
10
//
11
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
12
// of conditions and the following disclaimer in the documentation and/or other
13
// materials provided with the distribution.
14
//
15
// 3. Neither the name of the copyright holder nor the names of its contributors may be
16
// used to endorse or promote products derived from this software without specific
17
// prior written permission.
18
//
19
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
//
29
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30
31
#pragma once
32
33
#include "
ringct/rctSigs.h
"
34
#include "
ringct/bulletproofs_plus.h
"
35
36
template
<
bool
a_verify,
size_t
n_amounts>
37
class
test_bulletproof_plus
38
{
39
public
:
40
static
const
size_t
approx_loop_count
= 100 / n_amounts;
41
static
const
size_t
loop_count
= (
approx_loop_count
>= 10 ?
approx_loop_count
: 10) / (a_verify ? 1 : 5);
42
static
const
bool
verify
= a_verify;
43
44
bool
init
()
45
{
46
proof
=
rct::bulletproof_plus_PROVE
(std::vector<uint64_t>(n_amounts, 749327532984),
rct::skvGen
(n_amounts));
47
return
true
;
48
}
49
50
bool
test
()
51
{
52
bool
ret =
true
;
53
if
(
verify
)
54
ret =
rct::bulletproof_plus_VERIFY
(
proof
);
55
else
56
rct::bulletproof_plus_PROVE
(std::vector<uint64_t>(n_amounts, 749327532984),
rct::skvGen
(n_amounts));
57
return
ret;
58
}
59
60
private
:
61
rct::BulletproofPlus
proof
;
62
};
63
64
template
<
bool
batch,
size_t
start,
size_t
repeat,
size_t
mul,
size_t
add,
size_t
N>
65
class
test_aggregated_bulletproof_plus
66
{
67
public
:
68
static
const
size_t
loop_count
= 500 / (N * repeat);
69
70
bool
init
()
71
{
72
size_t
o =
start
;
73
for
(
size_t
n = 0; n < N; ++n)
74
{
75
for
(
size_t
i = 0; i < repeat; ++i)
76
proofs
.push_back(
rct::bulletproof_plus_PROVE
(std::vector<uint64_t>(o, 749327532984),
rct::skvGen
(o)));
77
o = o *
mul
+ add;
78
}
79
return
true
;
80
}
81
82
bool
test
()
83
{
84
if
(batch)
85
{
86
return
rct::bulletproof_plus_VERIFY
(
proofs
);
87
}
88
else
89
{
90
for
(
const
rct::BulletproofPlus
&
proof
:
proofs
)
91
if
(!
rct::bulletproof_plus_VERIFY
(
proof
))
92
return
false
;
93
return
true
;
94
}
95
}
96
97
private
:
98
std::vector<rct::BulletproofPlus>
proofs
;
99
};
proof
rct::Bulletproof proof
Definition
bulletproof.cpp:41
bulletproofs_plus.h
test_aggregated_bulletproof_plus
Definition
bulletproof_plus.h:66
test_aggregated_bulletproof_plus::loop_count
static const size_t loop_count
Definition
bulletproof_plus.h:68
test_aggregated_bulletproof_plus::init
bool init()
Definition
bulletproof_plus.h:70
test_aggregated_bulletproof_plus::test
bool test()
Definition
bulletproof_plus.h:82
test_bulletproof_plus
Definition
bulletproof_plus.h:38
test_bulletproof_plus::init
bool init()
Definition
bulletproof_plus.h:44
test_bulletproof_plus::approx_loop_count
static const size_t approx_loop_count
Definition
bulletproof_plus.h:40
test_bulletproof_plus::loop_count
static const size_t loop_count
Definition
bulletproof_plus.h:41
test_bulletproof_plus::test
bool test()
Definition
bulletproof_plus.h:50
test_bulletproof_plus::proof
rct::BulletproofPlus proof
Definition
bulletproof_plus.h:61
test_bulletproof_plus::verify
static const bool verify
Definition
bulletproof_plus.h:42
start
conn start()
proofs
Definition
proofs.py:1
rct::bulletproof_plus_PROVE
BulletproofPlus bulletproof_plus_PROVE(const rct::key &sv, const rct::key &gamma)
Definition
bulletproofs_plus.cc:502
rct::skvGen
keyV skvGen(size_t rows)
Definition
rctOps.cpp:266
rct::bulletproof_plus_VERIFY
bool bulletproof_plus_VERIFY(const std::vector< const BulletproofPlus * > &proofs)
Definition
bulletproofs_plus.cc:799
rctSigs.h
mul
static void mul(const uint8_t *a, const uint8_t *b, uint8_t *res)
Definition
slow-hash.c:1711
rct::BulletproofPlus
Definition
rctTypes.h:250
Generated on
for Monero by
1.17.0