scyther/spdl/nsl7.spdl

23 lines
301 B
Plaintext
Raw Normal View History

2004-02-20 11:37:28 +00:00
const pk: Function;
secret sk: Function;
inversekeys (pk,sk);
protocol nsl7(I,R)
{
role R
{
var ni;
const nr;
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-02-22 13:16:53 +00:00
claim(I,Secret,nr,ni);
2004-02-20 11:37:28 +00:00
}
}
const Alice,Bob;
run nsl3.R(Alice,Bob);
run nsl3.R(Alice,Bob);