Skip to content
Snippets Groups Projects
Commit 58d75963 authored by Ruhault's avatar Ruhault
Browse files

readme

parent 3906062e
No related branches found
No related tags found
No related merge requests found
No preview for this file type
#!/usr/bin/env python3
from __future__ import print_function
import sys
lines = sys.stdin.readlines()
l1 = []
l2 = []
lemma = sys.argv[1]
for line in lines:
num = line.split(':')[0]
if (lemma == "Agreement_InitHello" or "Agreement_Transport_itor" or "Secrecy_R_SK_ItoR_PFS" or "Secrecy_R_SK_RtoI_PFS" or "Secrecy_R_SK_ItoR" or "Secrecy_R_SK_RtoI" or "Agreement_Confirm" or "Secrecy_RK6" or "Secrecy_RK6_PFS"):
if "splitEqs(0)" in line:
l1.append(num)
else:
l2.append(num)
else:
exit(0)
ranked = l1 + l2
for i in ranked:
print(i)
#!/bin/sh
eval $(opam --safe env)
eval $(opam env)
JOBS=6
......@@ -14,4 +14,4 @@ cd ../secrecy_rsk6_pfs
echo "Evaluate ProVerif queries for isk6 pfs"
time -p -f "%E" parallel --jobs $JOBS < wireguard_command
\ No newline at end of file
time -p -f "%E" parallel --jobs $JOBS < wireguard_command
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment