Monero
Loading...
Searching...
No Matches
rct_mlsag.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"
35
36#include "single_tx_test_base.h"
37
38template<size_t ring_size, bool ver>
40{
41public:
42 static const size_t cols = ring_size;
43 static const size_t rows = 2; // single spend and commitment data
44 static const size_t loop_count = 1000;
45
46 bool init()
47 {
49 return false;
50
52 rct::keyM xm = rct::keyMInit(rows, cols);// = [[None]*N] #just used to generate test public keys
54 P = rct::keyMInit(rows, cols);// = keyM[[None]*N] #stores the public keys;
55 ind = 2;
56 for (size_t j = 0 ; j < rows ; j++)
57 {
58 for (size_t i = 0 ; i < cols ; i++)
59 {
60 xm[i][j] = rct::skGen();
61 P[i][j] = rct::scalarmultBase(xm[i][j]);
62 }
63 }
64 for (size_t j = 0 ; j < rows ; j++)
65 {
66 sk[j] = xm[ind][j];
67 }
68 IIccss = MLSAG_Gen(rct::identity(), P, sk, ind, rows-1, hw::get_device("default"));
69
70 return true;
71 }
72
73 bool test()
74 {
75 if (ver)
76 MLSAG_Ver(rct::identity(), P, IIccss, rows-1);
77 else
78 MLSAG_Gen(rct::identity(), P, sk, ind, rows-1, hw::get_device("default"));
79 return true;
80 }
81
82private:
85 size_t ind{};
87};
Definition single_tx_test_base.h:38
bool init()
Definition single_tx_test_base.h:40
Definition rct_mlsag.h:40
rct::keyV sk
Definition rct_mlsag.h:83
static const size_t loop_count
Definition rct_mlsag.h:44
size_t ind
Definition rct_mlsag.h:85
bool test()
Definition rct_mlsag.h:73
static const size_t cols
Definition rct_mlsag.h:42
bool init()
Definition rct_mlsag.h:46
static const size_t rows
Definition rct_mlsag.h:43
rct::mgSig IIccss
Definition rct_mlsag.h:86
rct::keyM P
Definition rct_mlsag.h:84
device & get_device(const std::string &device_descriptor)
Definition device.cpp:95
void scalarmultBase(key &aG, const key &a)
Definition rctOps.cpp:350
std::vector< key > keyV
Definition rctTypes.h:89
std::vector< keyV > keyM
Definition rctTypes.h:90
key skGen()
Definition rctOps.cpp:258
keyV skvGen(size_t rows)
Definition rctOps.cpp:266
keyM keyMInit(size_t rows, size_t cols)
Definition rctOps.cpp:227
key identity()
Definition rctOps.h:73
Definition rctTypes.h:168