scyther/testing/ns3-brutus.spdl

44 lines
815 B
Plaintext
Raw Permalink Normal View History

2006-11-21 13:40:50 +00:00
const pk: Function;
secret sk: Function;
inversekeys (pk,sk);
protocol ns3brutus(I,R)
{
role I
{
fresh ni: Nonce;
2006-11-21 13:40:50 +00:00
var nr: Nonce;
send_1(I,R, {I,ni}pk(R) );
2012-05-02 22:26:41 +01:00
recv_2(R,I, {ni,nr}pk(I) );
2006-11-21 13:40:50 +00:00
send_3(I,R, {nr}pk(R) );
claim_4(I,Secret,nr);
}
role R
{
var ni: Nonce;
fresh nr: Nonce;
2006-11-21 13:40:50 +00:00
2012-05-02 22:26:41 +01:00
recv_1(I,R, {I,ni}pk(R) );
2006-11-21 13:40:50 +00:00
send_2(R,I, {ni,nr}pk(I) );
2012-05-02 22:26:41 +01:00
recv_3(I,R, {nr}pk(R) );
2006-11-21 13:40:50 +00:00
claim_5(R,Secret,ni);
}
}
const Alice,Bob,Eve : Agent;
/* something like this will later on all be implied by 'untrusted Eve' */
/* fresh nc: Nonce; */
2006-11-21 13:40:50 +00:00
/* pre-defined 10 runs, limit using --max-runs parameters */
/* to be nice to brutus, stupid scenario :( */
run ns3brutus.I(Alice,Agent);
run ns3brutus.I(Alice,Agent);
run ns3brutus.I(Alice,Agent);
run ns3brutus.I(Alice,Agent);
run ns3brutus.I(Alice,Agent);