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

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