From 34484a28f9dc74be7caed22403492e3b451fbb5f Mon Sep 17 00:00:00 2001 From: ccremers Date: Thu, 22 Dec 2005 10:44:50 +0000 Subject: [PATCH] - Added two simple demos. --- spdl/demo/ns3.spdl | 52 +++++++++++++++++++++++++++++++++++++++++++++ spdl/demo/nsl3.spdl | 52 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 104 insertions(+) create mode 100644 spdl/demo/ns3.spdl create mode 100644 spdl/demo/nsl3.spdl diff --git a/spdl/demo/ns3.spdl b/spdl/demo/ns3.spdl new file mode 100644 index 0000000..7e39cff --- /dev/null +++ b/spdl/demo/ns3.spdl @@ -0,0 +1,52 @@ +/* + * Needham-Schroeder protocol + */ + +// PKI infrastructure + +const pk: Function; +secret sk: Function; +inversekeys (pk,sk); + +// The protocol description + +protocol ns3(I,R) +{ + role I + { + const ni: Nonce; + var nr: Nonce; + + send_1(I,R, {I,ni}pk(R) ); + read_2(R,I, {ni,nr}pk(I) ); + send_3(I,R, {nr}pk(R) ); + + claim_i1(I,Secret,ni); + claim_i2(I,Secret,nr); + claim_i3(I,Niagree); + claim_i4(I,Nisynch); + } + + role R + { + var ni: Nonce; + const nr: Nonce; + + read_1(I,R, {I,ni}pk(R) ); + send_2(R,I, {ni,nr}pk(I) ); + read_3(I,R, {nr}pk(R) ); + + claim_r1(R,Secret,ni); + claim_r2(R,Secret,nr); + claim_r3(R,Niagree); + claim_r4(R,Nisynch); + } +} + +// An untrusted agent, with leaked information + +const Eve: Agent; +untrusted Eve; +const ne: Nonce; +compromised sk(Eve); + diff --git a/spdl/demo/nsl3.spdl b/spdl/demo/nsl3.spdl new file mode 100644 index 0000000..5b0349a --- /dev/null +++ b/spdl/demo/nsl3.spdl @@ -0,0 +1,52 @@ +/* + * Needham-Schroeder-Lowe protocol + */ + +// PKI infrastructure + +const pk: Function; +secret sk: Function; +inversekeys (pk,sk); + +// The protocol description + +protocol nsl3(I,R) +{ + role I + { + const ni: Nonce; + var nr: Nonce; + + send_1(I,R, {I,ni}pk(R) ); + read_2(R,I, {ni,nr,R}pk(I) ); + send_3(I,R, {nr}pk(R) ); + + claim_i1(I,Secret,ni); + claim_i2(I,Secret,nr); + claim_i3(I,Niagree); + claim_i4(I,Nisynch); + } + + role R + { + var ni: Nonce; + const nr: Nonce; + + read_1(I,R, {I,ni}pk(R) ); + send_2(R,I, {ni,nr,R}pk(I) ); + read_3(I,R, {nr}pk(R) ); + + claim_r1(R,Secret,ni); + claim_r2(R,Secret,nr); + claim_r3(R,Niagree); + claim_r4(R,Nisynch); + } +} + +// An untrusted agent, with leaked information + +const Eve: Agent; +untrusted Eve; +const ne: Nonce; +compromised sk(Eve); +