scyther/spdl/nsl3.spdl

38 lines
553 B
Plaintext
Raw Normal View History

2004-02-20 11:37:28 +00: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) );
read_2(R,I, {ni,nr,R}pk(I) );
send_3(I,R, {nr}pk(R) );
2004-06-16 16:43:55 +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,R}pk(I) );
read_3(I,R, {nr}pk(R) );
2004-08-27 20:08:31 +01:00
claim_5(R,Secret,ni,nr);
2004-02-20 11:37:28 +00:00
}
}
const Alice,Bob,Eve: Agent;
untrusted Eve;
const nc: Nonce;
compromised sk(Eve);
run nsl3.I(Agent,Agent);
run nsl3.R(Alice,Bob);