]> 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 09:50:48 +0000 (10:50 +0100)
committercouturie <you@example.com>
Sun, 10 Mar 2019 09:50:48 +0000 (10:50 +0100)
IDA_new/run_long.py [new file with mode: 0644]

diff --git a/IDA_new/run_long.py b/IDA_new/run_long.py
new file mode 100644 (file)
index 0000000..dc92c48
--- /dev/null
@@ -0,0 +1,20 @@
+#python3 run_long.py > exe_long.txt
+
+
+import subprocess
+import re
+
+
+print("#size \t t   \t n  \t time")
+
+for i in range(14,26,2):
+    len=(2**i)
+    
+    subprocess.check_output("head -c "+str(len)+" </dev/urandom >file"+str(len),shell=True)
+    for k in range(4,16,4):
+        result=subprocess.check_output("./ida_gf65_paper1 t"+str(k)+" n16 ffile"+str(len),shell=True)
+        res=result.decode()
+        print(str(len)+"\t"+str(k)+"\t 16 \t"+res)
+
+
+