Monero
Toggle main menu visibility
Loading...
Searching...
No Matches
tests
performance_tests
multiexp.h
Go to the documentation of this file.
1
// Copyright (c) 2018-2022, The Monero Project
2
3
//
4
// All rights reserved.
5
//
6
// Redistribution and use in source and binary forms, with or without modification, are
7
// permitted provided that the following conditions are met:
8
//
9
// 1. Redistributions of source code must retain the above copyright notice, this list of
10
// conditions and the following disclaimer.
11
//
12
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
13
// of conditions and the following disclaimer in the documentation and/or other
14
// materials provided with the distribution.
15
//
16
// 3. Neither the name of the copyright holder nor the names of its contributors may be
17
// used to endorse or promote products derived from this software without specific
18
// prior written permission.
19
//
20
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
21
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
23
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
28
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
//
30
// Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
31
32
#pragma once
33
34
#include <vector>
35
#include "
ringct/rctOps.h
"
36
#include "
ringct/multiexp.h
"
37
38
enum
test_multiexp_algorithm
39
{
40
multiexp_bos_coster
,
41
multiexp_straus
,
42
multiexp_straus_cached
,
43
multiexp_pippenger
,
44
multiexp_pippenger_cached
,
45
};
46
47
template
<test_multiexp_algorithm algorithm,
size_t
npo
int
s,
size_t
c=0>
48
class
test_multiexp
49
{
50
public
:
51
static
const
size_t
loop_count
= npoints >= 1024 ? 10 : npoints < 256 ? 1000 : 100;
52
53
bool
init
()
54
{
55
data
.resize(npoints);
56
res
=
rct::identity
();
57
for
(
size_t
n = 0; n < npoints; ++n)
58
{
59
data
[n].scalar =
rct::skGen
();
60
rct::key
point =
rct::scalarmultBase
(
rct::skGen
());
61
if
(
ge_frombytes_vartime
(&
data
[n].point, point.
bytes
))
62
return
false
;
63
rct::key
kn =
rct::scalarmultKey
(point,
data
[n].scalar);
64
res
=
rct::addKeys
(
res
, kn);
65
}
66
straus_cache
=
rct::straus_init_cache
(
data
);
67
pippenger_cache
=
rct::pippenger_init_cache
(
data
);
68
return
true
;
69
}
70
71
bool
test
()
72
{
73
switch
(algorithm)
74
{
75
case
multiexp_bos_coster
:
76
return
res
== bos_coster_heap_conv_robust(
data
);
77
case
multiexp_straus
:
78
return
res
== straus(
data
);
79
case
multiexp_straus_cached
:
80
return
res
== straus(
data
,
straus_cache
);
81
case
multiexp_pippenger
:
82
return
res
== pippenger(
data
, NULL, 0, c);
83
case
multiexp_pippenger_cached
:
84
return
res
== pippenger(
data
,
pippenger_cache
, 0, c);
85
default
:
86
return
false
;
87
}
88
}
89
90
private
:
91
std::vector<rct::MultiexpData>
data
;
92
std::shared_ptr<rct::straus_cached_data>
straus_cache
;
93
std::shared_ptr<rct::pippenger_cached_data>
pippenger_cache
;
94
rct::key
res
;
95
};
test_multiexp
Definition
multiexp.h:49
test_multiexp::pippenger_cache
std::shared_ptr< rct::pippenger_cached_data > pippenger_cache
Definition
multiexp.h:93
test_multiexp::test
bool test()
Definition
multiexp.h:71
test_multiexp::straus_cache
std::shared_ptr< rct::straus_cached_data > straus_cache
Definition
multiexp.h:92
test_multiexp::loop_count
static const size_t loop_count
Definition
multiexp.h:51
test_multiexp::init
bool init()
Definition
multiexp.h:53
test_multiexp::res
rct::key res
Definition
multiexp.h:94
test_multiexp::data
std::vector< rct::MultiexpData > data
Definition
multiexp.h:91
rct::scalarmultBase
void scalarmultBase(key &aG, const key &a)
Definition
rctOps.cpp:350
rct::straus_init_cache
std::shared_ptr< straus_cached_data > straus_init_cache(const std::vector< MultiexpData > &data, size_t N)
Definition
multiexp.cc:370
rct::skGen
key skGen()
Definition
rctOps.cpp:258
rct::pippenger_init_cache
std::shared_ptr< pippenger_cached_data > pippenger_init_cache(const std::vector< MultiexpData > &data, size_t start_offset, size_t N)
Definition
multiexp.cc:582
rct::scalarmultKey
void scalarmultKey(key &aP, const key &P, const key &a)
Definition
rctOps.cpp:368
rct::addKeys
void addKeys(key &AB, const key &A, const key &B)
Definition
rctOps.cpp:432
rct::skGen
void skGen(key &sk)
Definition
rctOps.cpp:253
rct::identity
key identity()
Definition
rctOps.h:73
rctOps.h
ge_frombytes_vartime
int ge_frombytes_vartime(ge_p3 *h, const unsigned char *s)
Definition
crypto-ops.c:1334
multiexp.h
rct::key
Definition
rctTypes.h:79
rct::key::bytes
unsigned char bytes[32]
Definition
rctTypes.h:87
test_multiexp_algorithm
test_multiexp_algorithm
Definition
multiexp.h:39
multiexp_pippenger
@ multiexp_pippenger
Definition
multiexp.h:43
multiexp_pippenger_cached
@ multiexp_pippenger_cached
Definition
multiexp.h:44
multiexp_straus_cached
@ multiexp_straus_cached
Definition
multiexp.h:42
multiexp_bos_coster
@ multiexp_bos_coster
Definition
multiexp.h:40
multiexp_straus
@ multiexp_straus
Definition
multiexp.h:41
Generated on
for Monero by
1.17.0