scyther/spdl/nsl3-nisynch-rep.spdl

44 lines
697 B
Plaintext
Raw Normal View History

2004-07-21 14:12:47 +01:00
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) );
2004-08-27 20:08:31 +01:00
send_6(I,R, {I,ni}pk(R) );
2004-07-21 14:12:47 +01:00
read_2(R,I, {ni,nr,R}pk(I) );
send_3(I,R, {nr}pk(R) );
2004-08-27 20:08:31 +01:00
claim_4(I,Niagree);
claim_7(I,Nisynch);
2004-07-21 14:12:47 +01:00
}
role R
{
var ni: Nonce;
const nr: Nonce;
read_1(I,R, {I,ni}pk(R) );
2004-08-27 20:08:31 +01:00
read_6(I,R, {I,ni}pk(R) );
2004-07-21 14:12:47 +01:00
send_2(R,I, {ni,nr,R}pk(I) );
read_3(I,R, {nr}pk(R) );
2004-08-27 20:08:31 +01:00
claim_5(R,Niagree);
claim_8(R,Nisynch);
2004-07-21 14:12:47 +01:00
}
}
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);