Monero
Loading...
Searching...
No Matches
multiexp.h
Go to the documentation of this file.
1// Copyright (c) 2017-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// Adapted from Python code by Sarang Noether
31
32#pragma once
33
34#ifndef MULTIEXP_H
35#define MULTIEXP_H
36
37#include <vector>
38#include "crypto/crypto.h"
39#include "rctTypes.h"
40#include "misc_log_ex.h"
41
42namespace rct
43{
44
48
50 MultiexpData(const rct::key &s, const ge_p3 &p): scalar(s), point(p) {}
51 MultiexpData(const rct::key &s, const rct::key &p): scalar(s)
52 {
53 CHECK_AND_ASSERT_THROW_MES(ge_frombytes_vartime(&point, p.bytes) == 0, "ge_frombytes_vartime failed");
54 }
55};
56
57struct straus_cached_data;
58struct pippenger_cached_data;
59
60rct::key bos_coster_heap_conv(std::vector<MultiexpData> data);
61rct::key bos_coster_heap_conv_robust(std::vector<MultiexpData> data);
62std::shared_ptr<straus_cached_data> straus_init_cache(const std::vector<MultiexpData> &data, size_t N =0);
63size_t straus_get_cache_size(const std::shared_ptr<straus_cached_data> &cache);
64rct::key straus(const std::vector<MultiexpData> &data, const std::shared_ptr<straus_cached_data> &cache = NULL, size_t STEP = 0);
65std::shared_ptr<pippenger_cached_data> pippenger_init_cache(const std::vector<MultiexpData> &data, size_t start_offset = 0, size_t N =0);
66size_t pippenger_get_cache_size(const std::shared_ptr<pippenger_cached_data> &cache);
67size_t get_pippenger_c(size_t N);
68rct::key pippenger(const std::vector<MultiexpData> &data, const std::shared_ptr<pippenger_cached_data> &cache = NULL, size_t cache_size = 0, size_t c = 0);
69
70}
71
72#endif
#define s(x, c)
Definition aesb.c:47
Definition bulletproofs.cc:64
rct::key bos_coster_heap_conv_robust(std::vector< MultiexpData > data)
Definition multiexp.cc:229
size_t get_pippenger_c(size_t N)
Definition multiexp.cc:562
size_t pippenger_get_cache_size(const std::shared_ptr< pippenger_cached_data > &cache)
Definition multiexp.cc:601
std::shared_ptr< straus_cached_data > straus_init_cache(const std::vector< MultiexpData > &data, size_t N)
Definition multiexp.cc:370
rct::key pippenger(const std::vector< MultiexpData > &data, const std::shared_ptr< pippenger_cached_data > &cache, size_t cache_size, size_t c)
Definition multiexp.cc:606
rct::key straus(const std::vector< MultiexpData > &data, const std::shared_ptr< straus_cached_data > &cache, size_t STEP)
Definition multiexp.cc:446
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::key bos_coster_heap_conv(std::vector< MultiexpData > data)
Definition multiexp.cc:158
size_t straus_get_cache_size(const std::shared_ptr< straus_cached_data > &cache)
Definition multiexp.cc:434
int ge_frombytes_vartime(ge_p3 *h, const unsigned char *s)
Definition crypto-ops.c:1334
Definition crypto-ops.h:45
MultiexpData(const rct::key &s, const rct::key &p)
Definition multiexp.h:51
MultiexpData(const rct::key &s, const ge_p3 &p)
Definition multiexp.h:50
MultiexpData()
Definition multiexp.h:49
ge_p3 point
Definition multiexp.h:47
rct::key scalar
Definition multiexp.h:46
Definition rctTypes.h:79
std::string data
Definition base58.cpp:37
randomx_cache * cache
Definition tests.cpp:19