Automatic search for ADD differential trails in TEA using full DDT-s.
More...
#include "common.hh"
#include "tea.hh"
#include "adp-tea-f-fk-ddt.hh"
|
double | verify_trail (uint64_t npairs, differential_t trail[NROUNDS], uint32_t nrounds, uint32_t key[4], uint32_t delta, uint32_t lsh_const, uint32_t rsh_const) |
|
void | round_ddt (const int n, const int nrounds, differential_t **RSDDT_E, differential_t **RSDDT_O, differential_t *SDDT_O, double B[NROUNDS], double *Bn, const differential_t diff_in[NROUNDS], differential_t trail[NROUNDS]) |
|
void | tea_search_ddt (uint32_t key[4]) |
|
void | round_xddt (const int n, const int nrounds, differential_t ***XRSDDT_E, differential_t ***XRSDDT_O, differential_t **XSDDT_O, const double B[NROUNDS], double *Bn, differential_t diff_in[NROUNDS], differential_t trail[NROUNDS]) |
|
void | tea_search_xddt (uint32_t key[4]) |
|
void | round_xddt_bottom_up (const int n, const int nrounds, differential_t ***XRSDDT_E, differential_t ***XRSDDT_O, differential_t **XSDDT_E, differential_t **XSDDT_O, const double B[NROUNDS], double *Bn, differential_t diff_in[NROUNDS], differential_t trail[NROUNDS]) |
|
void | tea_search_xddt_bottom_up (uint32_t key[4]) |
|
Automatic search for ADD differential trails in TEA using full DDT-s.
- Author
- V.Velichkov, vesse.nosp@m.lin..nosp@m.velic.nosp@m.hkov.nosp@m.@uni..nosp@m.lu
- Attention
- Exponential complexity in the word size; infeasible for word sizes bigger than $11$ bits. Used only for tests and verification.
void tea_search_ddt |
( |
uint32_t |
key[4] | ) |
|
Search for ADD differential trails in a modified version of block cipher TEA that uses the same round constant
in every round. Computes full difference distribution tables (DDT) for every key and the same round constant: a wrapper function for round_ddt.
- Parameters
-
key | cryptographic key of TEA. |
- Attention
- Assumes the same
constant is used at every round of TEA.
- See Also
- tea_add_trail_search
void tea_search_xddt |
( |
uint32_t |
key[4] | ) |
|
Search for ADD differential trails in the original version of block cipher TEA. Computes full difference distribution tables (DDT) for every key and every round constant: a wrapper function for round_xddt.
- Parameters
-
key | cryptographic key of TEA. |
- See Also
- round_xddt
void tea_search_xddt_bottom_up |
( |
uint32_t |
key[4] | ) |
|
Search for ADD differential trails in the original version of block cipher TEA. Computes full difference distribution tables (DDT) for every key and every round constant. Conceptually the same as tea_search_xddt, except that the search starts from the last round and proceeds up to the first (i.e. in a bottom-up amnner). This function is a wrapper for round_xddt_bottom_up.
- Parameters
-
key | cryptographic key of TEA. |
- See Also
- round_xddt_bottom_up
double verify_trail |
( |
uint64_t |
npairs, |
|
|
differential_t |
trail[NROUNDS], |
|
|
uint32_t |
nrounds, |
|
|
uint32_t |
key[4], |
|
|
uint32_t |
delta, |
|
|
uint32_t |
lsh_const, |
|
|
uint32_t |
rsh_const |
|
) |
| |
Experimentally verify the probabilities of the 1-round differentials composing an N-round differential trail for block cipher TEA, against the exact probabilities from a DDT.
- Parameters
-
npairs | number of chosen plaintext pairs (NPAIRS). |
trail | best differential trail for nrounds . |
nrounds | total number of rounds (NROUNDS). |
key | cryptographic key of TEA. |
delta | round constant. |
lsh_const | LSH constant (TEA_LSH_CONST). |
rsh_const | RSH constant (TEA_RSH_CONST). |