From 2edf686a3e3f80f310d16dd490d5f597e1744468 Mon Sep 17 00:00:00 2001 From: ccremers Date: Sat, 28 Feb 2004 12:36:35 +0000 Subject: [PATCH] - Huge debugging effort to fix -t7 (POR2b), which seems to be okay now. - Next step: fix -t6. --- spdl/ns3-extreme.spdl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spdl/ns3-extreme.spdl b/spdl/ns3-extreme.spdl index e338ccd..981fbe1 100644 --- a/spdl/ns3-extreme.spdl +++ b/spdl/ns3-extreme.spdl @@ -12,7 +12,7 @@ protocol ns3(I,R) send_1(I,R, {I,ni}pk(R) ); read_2(R,I, {ni,nr}pk(I) ); send_3(I,R, {nr}pk(R) ); - claim(I,Secret,nr); + claim(I,Secret,ni,nr); } role R @@ -23,11 +23,11 @@ protocol ns3(I,R) read_1(I,R, {I,ni}pk(R) ); send_2(R,I, {ni,nr}pk(I) ); read_3(I,R, {nr}pk(R) ); - claim(I,Secret,ni); + claim(R,Secret,ni,nr); } } -const Alice,Bob,Eve : Agent; +const Alice,Bob,Eve: Agent; /* something like this will later on all be implied by 'untrusted Eve' */