YAARX: Yet Another ARX Toolkit  0.1
 All Data Structures Files Functions Variables Macros Pages
xtea-xor-threshold-search.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013 Luxembourg University,
3  * Laboratory of Algorithmics, Cryptology and Security (LACS).
4  *
5  * This file is part of the YAARX toolkit. YAARX stands for
6  * Yet Another ARX toolkit for analysis of ARX cryptographic algorithms.
7  *
8  * YAARX is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * YAARX is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with YAARX. If not, see <http://www.gnu.org/licenses/>.
20  */
27 #ifndef XTEA_XOR_THRESHOLD_SEARCH_H
28 #define XTEA_XOR_THRESHOLD_SEARCH_H
29 
30 double xtea_xor_init_estimate(uint32_t next_round, uint32_t lsh_const, uint32_t rsh_const, uint32_t npairs,
31  gsl_matrix* A[2][2][2], double B[NROUNDS], differential_t trail[NROUNDS],
32  std::set<differential_t, struct_comp_diff_dx_dy>* diff_set_dx_dy,
33  uint32_t round_key[64], uint32_t round_delta[64]);
34 
35 void xtea_xor_threshold_search(const int n, const int nrounds, const uint32_t npairs,
36  const uint32_t round_key[64], const uint32_t round_delta[64],
37  gsl_matrix* A[2][2][2], double B[NROUNDS], double* Bn,
38  const differential_t diff_in[NROUNDS], differential_t trail[NROUNDS],
39  uint32_t lsh_const, uint32_t rsh_const,
40  std::multiset<differential_t, struct_comp_diff_p>* diff_mset_p,
41  std::set<differential_t, struct_comp_diff_dx_dy>* diff_set_dx_dy,
42  uint32_t dxx_init, uint32_t* dxx_init_in);
43 
44 //void xtea_xor_trail_search(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64]);
45 //uint32_t xtea_xor_trail_search(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64],
46 // double B[NROUNDS], differential_t trail[NROUNDS]);
47 uint32_t xtea_xor_trail_search(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64],
48  std::set<differential_t, struct_comp_diff_dx_dy>* diff_set_dx_dy,
49  std::multiset<differential_t, struct_comp_diff_p>* diff_mset_p,
50  double B[NROUNDS], differential_t trail[NROUNDS]);
51 
52 //void xtea_xor_trail_search_full(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64]);
53 uint32_t xtea_xor_trail_search_full(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64],
54  std::set<differential_t, struct_comp_diff_dx_dy> diff_set_dx_dy,
55  std::multiset<differential_t, struct_comp_diff_p> diff_mset_p,
56  double BB[NROUNDS], differential_t trail[NROUNDS]);
57 
58 #endif // #ifndef XTEA_XOR_THRESHOLD_SEARCH_H
#define NROUNDS
Definition: common.hh:122
Definition: common.hh:272
uint32_t xtea_xor_trail_search_full(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64], std::set< differential_t, struct_comp_diff_dx_dy > diff_set_dx_dy, std::multiset< differential_t, struct_comp_diff_p > diff_mset_p, double BB[NROUNDS], differential_t trail[NROUNDS])
Definition: xtea-xor-threshold-search.cc:983
double xtea_xor_init_estimate(uint32_t next_round, uint32_t lsh_const, uint32_t rsh_const, uint32_t npairs, gsl_matrix *A[2][2][2], double B[NROUNDS], differential_t trail[NROUNDS], std::set< differential_t, struct_comp_diff_dx_dy > *diff_set_dx_dy, std::multiset< differential_t, struct_comp_diff_p > *diff_mset_p, uint32_t round_key[64], uint32_t round_delta[64])
Definition: xtea-xor-threshold-search.cc:70
uint32_t xtea_xor_trail_search(uint32_t key[4], uint32_t round_key[64], uint32_t round_delta[64], std::set< differential_t, struct_comp_diff_dx_dy > *diff_set_dx_dy, std::multiset< differential_t, struct_comp_diff_p > *diff_mset_p, double B[NROUNDS], differential_t trail[NROUNDS])
Definition: xtea-xor-threshold-search.cc:492
void xtea_xor_threshold_search(const int n, const int nrounds, const uint32_t npairs, const uint32_t round_key[64], const uint32_t round_delta[64], gsl_matrix *A[2][2][2], double B[NROUNDS], double *Bn, const differential_t diff_in[NROUNDS], differential_t trail[NROUNDS], uint32_t lsh_const, uint32_t rsh_const, std::multiset< differential_t, struct_comp_diff_p > *diff_mset_p, std::set< differential_t, struct_comp_diff_dx_dy > *diff_set_dx_dy, uint32_t dxx_init, uint32_t *dxx_init_in)
Definition: xtea-xor-threshold-search.cc:195