Monero
Loading...
Searching...
No Matches
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
46
47template<test_multiexp_algorithm algorithm, size_t npoints, size_t c=0>
49{
50public:
51 static const size_t loop_count = npoints >= 1024 ? 10 : npoints < 256 ? 1000 : 100;
52
53 bool init()
54 {
55 data.resize(npoints);
57 for (size_t n = 0; n < npoints; ++n)
58 {
59 data[n].scalar = 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 }
68 return true;
69 }
70
71 bool test()
72 {
73 switch (algorithm)
74 {
76 return res == bos_coster_heap_conv_robust(data);
77 case multiexp_straus:
78 return res == straus(data);
80 return res == straus(data, straus_cache);
82 return res == pippenger(data, NULL, 0, c);
84 return res == pippenger(data, pippenger_cache, 0, c);
85 default:
86 return false;
87 }
88 }
89
90private:
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;
95};
Definition multiexp.h:49
std::shared_ptr< rct::pippenger_cached_data > pippenger_cache
Definition multiexp.h:93
bool test()
Definition multiexp.h:71
std::shared_ptr< rct::straus_cached_data > straus_cache
Definition multiexp.h:92
static const size_t loop_count
Definition multiexp.h:51
bool init()
Definition multiexp.h:53
rct::key res
Definition multiexp.h:94
std::vector< rct::MultiexpData > data
Definition multiexp.h:91
void scalarmultBase(key &aG, const key &a)
Definition rctOps.cpp:350
std::shared_ptr< straus_cached_data > straus_init_cache(const std::vector< MultiexpData > &data, size_t N)
Definition multiexp.cc:370
key skGen()
Definition rctOps.cpp:258
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
void scalarmultKey(key &aP, const key &P, const key &a)
Definition rctOps.cpp:368
void addKeys(key &AB, const key &A, const key &B)
Definition rctOps.cpp:432
void skGen(key &sk)
Definition rctOps.cpp:253
key identity()
Definition rctOps.h:73
int ge_frombytes_vartime(ge_p3 *h, const unsigned char *s)
Definition crypto-ops.c:1334
Definition rctTypes.h:79
unsigned char bytes[32]
Definition rctTypes.h:87
test_multiexp_algorithm
Definition multiexp.h:39
@ multiexp_pippenger
Definition multiexp.h:43
@ multiexp_pippenger_cached
Definition multiexp.h:44
@ multiexp_straus_cached
Definition multiexp.h:42
@ multiexp_bos_coster
Definition multiexp.h:40
@ multiexp_straus
Definition multiexp.h:41