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

Private GIT Repository
up
[Cipher_code.git] / IDA_new / run_long.py
1 #python3 run_long.py > exe_long.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 k in range(4,16,4):
15         result=subprocess.check_output("./ida_gf65_paper1 t"+str(k)+" n16 ffile"+str(len),shell=True)
16         res=result.decode()
17         print(str(len)+"\t"+str(k)+"\t 16 \t"+res)
18
19
20