13 lines
329 B
Python
13 lines
329 B
Python
|
# @file DFA_DES_elev.py
|
||
|
# @brief Sandbox for DFA-on-DES's challenges.
|
||
|
# @author Laurent Sauvage <laurent.sauvage@telecom-paristech.fr>
|
||
|
|
||
|
from DFA_DES_challenges import *
|
||
|
from des_block import *
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
|
||
|
# === Challenge #1 : Simple Fault Analysis ===
|
||
|
for c1, c2 in CHALLENGE[4]:
|
||
|
print (c1, c2)
|