scyther/spdl/misc/f4.spdl

43 lines
577 B
Plaintext
Raw Normal View History

2006-11-21 13:40:50 +00:00
/*
* f4.spdl
*
* Tailored protocol to show that any number of runs can be required to
* find an attack.
*
* For this version, -m2 and -r4 are needed.
*
* April 2005, Cas Cremers
*/
const pk: Function;
secret sk: Function;
inversekeys (pk,sk);
protocol f4(I,R)
{
role I
{
var nr: Nonce;
read_!1(R,I, nr );
send_!2(I,R, { nr }sk(I) );
read_!3(R,I, {{{{ nr }sk(R)}sk(R)}sk(R)}sk(R) );
2006-11-21 13:40:50 +00:00
claim_i1(I,Reachable);
2006-11-21 13:40:50 +00:00
}
role R
{
const nr: Nonce;
send_!1(R,I, nr );
2006-11-21 13:40:50 +00:00
}
}
const Alice,Bob,Eve: Agent;
untrusted Eve;
const ne: Nonce;
compromised sk(Eve);