YAARX: Yet Another ARX Toolkit  0.1
 All Data Structures Files Functions Variables Macros Pages
xtea-f-add-pddt.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_F_ADD_PDDT_H
28 #define XTEA_F_ADD_PDDT_H
29 
30 void xtea_f_add_pddt_i(const uint32_t k, const uint32_t n, const uint32_t key, const uint32_t delta,
31  const uint32_t lsh_const, const uint32_t rsh_const,
32  gsl_matrix* A[2][2][2], gsl_matrix* AA[2][2][2], gsl_vector* C,
33  uint32_t* da, uint32_t* db, uint32_t* dc, uint32_t* dd,
34  double* p, const double p_thres,
35  std::set<differential_t, struct_comp_diff_dx_dy>* diff_set_dx_dy);
36 
37 void xtea_f_add_pddt(uint32_t n, double p_thres, uint32_t lsh_const, uint32_t rsh_const,
38  gsl_matrix* A[2][2][2], gsl_matrix* AA[2][2][2], gsl_vector* C,
39  uint32_t key, uint32_t delta,
40  std::set<differential_t, struct_comp_diff_dx_dy>* diff_set_dx_dy);
41 
42 void xtea_add_pddt_dxy_to_dp(std::multiset<differential_t, struct_comp_diff_p>* diff_mset_p,
43  const std::set<differential_t, struct_comp_diff_dx_dy> diff_set_dx_dy);
44 
45 #endif // #ifndef XTEA_F_ADD_PDDT_H
void xtea_f_add_pddt(uint32_t n, double p_thres, uint32_t lsh_const, uint32_t rsh_const, gsl_matrix *A[2][2][2], gsl_matrix *AA[2][2][2], gsl_vector *C, uint32_t key, uint32_t delta, std::set< differential_t, struct_comp_diff_dx_dy > *diff_set_dx_dy)
Definition: xtea-f-add-pddt.cc:252
void xtea_add_pddt_dxy_to_dp(std::multiset< differential_t, struct_comp_diff_p > *diff_mset_p, const std::set< differential_t, struct_comp_diff_dx_dy > diff_set_dx_dy)
Definition: xtea-f-add-pddt.cc:299
void xtea_f_add_pddt_i(const uint32_t k, const uint32_t n, const uint32_t key, const uint32_t delta, const uint32_t lsh_const, const uint32_t rsh_const, gsl_matrix *A[2][2][2], gsl_matrix *AA[2][2][2], gsl_vector *C, uint32_t *da, uint32_t *db, uint32_t *dc, uint32_t *dd, double *p, const double p_thres, std::set< differential_t, struct_comp_diff_dx_dy > *diff_set_dx_dy)
Definition: xtea-f-add-pddt.cc:115