- Added two files for nisynch testing.
This commit is contained in:
parent
056b5c245f
commit
fb51f679a1
39
spdl/ns3-nisynch.spdl
Normal file
39
spdl/ns3-nisynch.spdl
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
const pk: Function;
|
||||||
|
secret sk: Function;
|
||||||
|
inversekeys (pk,sk);
|
||||||
|
|
||||||
|
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_4(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_5(R,Nisynch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const Alice,Bob,Eve: Agent;
|
||||||
|
|
||||||
|
untrusted Eve;
|
||||||
|
const nc: Nonce;
|
||||||
|
compromised sk(Eve);
|
||||||
|
|
||||||
|
run ns3.I(Agent,Agent);
|
||||||
|
run ns3.R(Agent,Agent);
|
||||||
|
run ns3.I(Agent,Agent);
|
||||||
|
run ns3.R(Agent,Agent);
|
39
spdl/nsl3-nisynch.spdl
Normal file
39
spdl/nsl3-nisynch.spdl
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
const pk: Function;
|
||||||
|
secret sk: Function;
|
||||||
|
inversekeys (pk,sk);
|
||||||
|
|
||||||
|
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_4(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_5(I,Nisynch);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const Alice,Bob,Eve: Agent;
|
||||||
|
|
||||||
|
untrusted Eve;
|
||||||
|
const nc: Nonce;
|
||||||
|
compromised sk(Eve);
|
||||||
|
|
||||||
|
run nsl3.I(Agent,Agent);
|
||||||
|
run nsl3.R(Agent,Agent);
|
||||||
|
run nsl3.I(Agent,Agent);
|
||||||
|
run nsl3.R(Agent,Agent);
|
Loading…
Reference in New Issue
Block a user