scyther/spdl/ns3-extreme.spdl

48 lines
829 B
Plaintext
Raw Normal View History

2004-02-20 11:37:28 +00:00
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) );
2004-07-13 12:37:45 +01:00
claim_4(I,Secret,ni,nr);
2004-02-20 11:37:28 +00:00
}
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) );
2004-07-13 12:37:45 +01:00
claim_5(R,Secret,ni,nr);
2004-02-20 11:37:28 +00:00
}
}
const Alice,Bob,Eve: Agent;
2004-02-20 11:37:28 +00:00
/* something like this will later on all be implied by 'untrusted Eve' */
untrusted Eve;
const nc: Nonce;
compromised sk(Eve);
/* pre-defined 10 runs, limit using --max-runs parameters */
run ns3.I(Agent,Agent);
run ns3.R(Agent,Agent);
run ns3.I(Agent,Agent);
run ns3.R(Agent,Agent);
run ns3.I(Agent,Agent);
run ns3.R(Agent,Agent);
run ns3.I(Agent,Agent);
run ns3.R(Agent,Agent);