-
Notifications
You must be signed in to change notification settings - Fork 19
/
lighter_test.cpp
152 lines (130 loc) · 2.92 KB
/
lighter_test.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
* PEIGEN: a Platform for Evaluation, Implementation, and Generation of S-boxes
*
* Copyright 2019 by
* Zhenzhen Bao <baozhenzhen10[at]gmail.com>
* Jian Guo <guojian[at]ntu.edu.sg>
* San Ling <lingsan[at]ntu.edu.sg>
* Yu Sasaki <yu[dot]sasaki[dot][email protected]>
*
* This platform is developed based on the open source application
* <http://jeremy.jean.free.fr/pub/fse2018_layer_implementations.tar.gz>
* Optimizing Implementations of Lightweight Building Blocks
*
* Copyright 2017 by
* Jade Tourteaux <Jade[dot]Tourteaux[at]gmail.com>
* Jérémy Jean <Jean[dot]Jeremy[at]gmail.com>
*
* We follow the same copyright policy.
*
* This file is part of some open source application.
*
* Some open source application is free software: you can redistribute
* it and/or modify it under the terms of the GNU General Public
* License as published by the Free Software Foundation, either
* version 3 of the License, or (at your option) any later version.
*
* Some open source application is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Foobar. If not, see <http://www.gnu.org/licenses/>.
*
* @license GPL-3.0+ <http://spdx.org/licenses/GPL-3.0+>
*/
#include <stdio.h>
#include <stdlib.h>
#include <inttypes.h>
#include <fstream>
#include <string>
#include "func.hpp"
using namespace Peigen;
using namespace Peigen::weight;
using namespace std;
template<typename T>
inline T MAOI1(T x, T y, T z, T t)
{
return (~((x & y) | (~(z | t))));
}
template<typename T>
inline T MOAI1(T x, T y, T z, T t)
{
return (~((x | y) & (~(z & t))));
}
template<typename T>
inline T NAND2(T x, T y)
{
return ~(x & y);
}
template<typename T>
inline T NOR2(T x, T y)
{
return ~(x | y);
}
template<typename T>
inline T NAND3(T x, T y, T z)
{
return ~(x & y & z);
}
template<typename T>
inline T NOR3(T x, T y, T z)
{
return ~(x | y | z);
}
template<typename T>
inline T AND3(T x, T y, T z)
{
return (x & y & z);
}
template<typename T>
inline T OR3(T x, T y, T z)
{
return (x | y | z);
}
template<typename T>
inline T AND2(T x, T y)
{
return (x & y);
}
template<typename T>
inline T ANDN2(T x, T y)
{
return (~x & y);
}
template<typename T>
inline T OR2(T x, T y)
{
return (x | y);
}
template<typename T>
inline T ORN2(T x, T y)
{
return ((~x) | y);
}
template<typename T>
inline T XOR2(T x, T y)
{
return (x ^ y);
}
template<typename T>
inline T XNOR2(T x, T y)
{
return ~(x ^ y);
}
template<typename T>
inline T NOT1(T x)
{
return ~x;
}
int main()
{
ofstream fout("results_test.txt");
#define n 4
function_t<n> I = function_t<n>::INPUT_DEFAULT();
bit_slice_t<n> X;
bit_slice_t<n> F;
#include "testcode.cpp"
fout.close();
}