]> AND Private Git Repository - Cipher_code.git/commitdiff
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
new
authorcouturie <you@example.com>
Sun, 10 Mar 2019 10:18:36 +0000 (11:18 +0100)
committercouturie <you@example.com>
Sun, 10 Mar 2019 10:18:36 +0000 (11:18 +0100)
IDA_new/run_long2.py [new file with mode: 0644]

diff --git a/IDA_new/run_long2.py b/IDA_new/run_long2.py
new file mode 100644 (file)
index 0000000..2003e02
--- /dev/null
@@ -0,0 +1,21 @@
+#python3 run_long2.py > exe_long2.txt
+
+
+import subprocess
+import re
+
+
+print("#size \t t   \t n  \t time")
+
+for i in range(14,30,2):
+    len=(2**i)
+    
+    subprocess.check_output("head -c "+str(len)+" </dev/urandom >file"+str(len),shell=True)
+    for n in range(8,32,8):
+        t=int(n/4+1)
+        result=subprocess.check_output("./ida_gf65_paper1 t"+str(t)+" n"+str(n)+" ffile"+str(len),shell=True)
+        res=result.decode()
+        print(str(len)+"\t"+str(t)+"\t "+str(n)+" \t"+res)
+
+
+