Electroneum
Loading...
Searching...
No Matches
rct_mlsag.h
Go to the documentation of this file.
1
// Copyright (c) 2014-2019, 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 "
cryptonote_basic/cryptonote_basic.h
"
35
36
#include "
single_tx_test_base.h
"
37
38
template
<
size_t
inputs,
size_t
ring_size,
bool
ver>
39
class
test_ringct_mlsag
:
public
single_tx_test_base
40
{
41
public
:
42
static
const
size_t
cols
= ring_size;
43
static
const
size_t
rows
= inputs;
44
static
const
size_t
loop_count
= 100;
45
46
bool
init
()
47
{
48
if
(!
single_tx_test_base::init
())
49
return
false
;
50
51
rct::keyV
xtmp =
rct::skvGen
(
rows
);
52
rct::keyM
xm =
rct::keyMInit
(
rows
,
cols
);
// = [[None]*N] #just used to generate test public keys
53
sk =
rct::skvGen
(
rows
);
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, NULL, NULL, ind,
rows
,
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
);
77
else
78
MLSAG_Gen(
rct::identity
(), P, sk, NULL, NULL, ind,
rows
,
hw::get_device
(
"default"
));
79
return
true
;
80
}
81
82
private
:
83
rct::keyV
sk;
84
rct::keyM
P;
85
size_t
ind;
86
rct::mgSig
IIccss;
87
};
single_tx_test_base
Definition
single_tx_test_base.h:39
single_tx_test_base::init
bool init()
Definition
single_tx_test_base.h:41
test_ringct_mlsag
Definition
rct_mlsag.h:40
test_ringct_mlsag::rows
static const size_t rows
Definition
rct_mlsag.h:43
test_ringct_mlsag::init
bool init()
Definition
rct_mlsag.h:46
test_ringct_mlsag::cols
static const size_t cols
Definition
rct_mlsag.h:42
test_ringct_mlsag::test
bool test()
Definition
rct_mlsag.h:73
test_ringct_mlsag::loop_count
static const size_t loop_count
Definition
rct_mlsag.h:44
cryptonote_basic.h
hw::get_device
device & get_device(const std::string &device_descriptor)
Definition
device.cpp:95
rct::scalarmultBase
void scalarmultBase(key &aG, const key &a)
Definition
rctOps.cpp:350
rct::keyV
std::vector< key > keyV
Definition
rctTypes.h:88
rct::keyM
std::vector< keyV > keyM
Definition
rctTypes.h:89
rct::skGen
key skGen()
Definition
rctOps.cpp:258
rct::skvGen
keyV skvGen(size_t rows)
Definition
rctOps.cpp:266
rct::keyMInit
keyM keyMInit(size_t rows, size_t cols)
Definition
rctOps.cpp:227
rct::identity
key identity()
Definition
rctOps.h:73
rctSigs.h
single_tx_test_base.h
rct::mgSig
Definition
rctTypes.h:152
tests
performance_tests
rct_mlsag.h
Generated on
for Electroneum by
1.16.1