scyther/testing/soph.spdl

27 lines
278 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 soph(I,R)
{
role I
{
fresh ni: Nonce;
2006-11-21 13:40:50 +00:00
send_1(I,R, {I,ni}pk(R) );
2012-05-02 22:26:41 +01:00
recv_2(R,I, ni );
2006-11-21 13:40:50 +00:00
claim_3(I,Niagree);
}
role R
{
var ni: Nonce;
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 );
}
}