]> AND Private Git Repository - Cipher_code.git/blob - IDA_new/run_long_paper3.py
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
a395f660577bb563da3854ba4b1a53838a2689f5
[Cipher_code.git] / IDA_new / run_long_paper3.py
1 #python3 run_long_paper3.py > exe_long_paper3.txt
2
3
4 import subprocess
5 import re
6
7
8 print("#size \t t   \t n  \t time")
9
10 i=8
11 len=(2**i)
12     
13 subprocess.check_output("head -c "+str(len)+" </dev/urandom >file"+str(len),shell=True)
14 for k in range(2,8,2):
15     result=subprocess.check_output("./ida_gf65_paper2 t"+str(k)+" n8 ffile"+str(len),shell=True)
16     res=result.decode()
17     print(str(len)+"\t"+str(k)+"\t 8 \t"+res)
18
19
20