scyther/testing/carkey-broken-limited.spdl

25 lines
233 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 carkeybrokenlim(I,R)
{
role I
{
fresh ni: Nonce;
2006-11-21 13:40:50 +00:00
send_1(I,R, I,R );
}
role R
{
var ni: Nonce;
2012-05-02 22:26:41 +01:00
recv_1(I,R, I,R );
2006-11-21 13:40:50 +00:00
claim_2(R,Nisynch);
}
}