2006-11-21 13:40:50 +00:00
|
|
|
/*
|
|
|
|
* Local claims
|
|
|
|
*/
|
|
|
|
|
|
|
|
// PKI infrastructure
|
|
|
|
|
|
|
|
const pk: Function;
|
|
|
|
secret sk: Function;
|
|
|
|
inversekeys (pk,sk);
|
|
|
|
|
|
|
|
// The protocol description
|
|
|
|
|
|
|
|
protocol localclaims(I,R)
|
|
|
|
{
|
|
|
|
role I
|
|
|
|
{
|
2012-05-02 22:01:08 +01:00
|
|
|
fresh ni: Nonce;
|
2006-11-21 13:40:50 +00:00
|
|
|
|
|
|
|
send_1(I,R, {ni}pk(R) );
|
|
|
|
|
|
|
|
claim_i1(I,Secret,ni);
|
|
|
|
}
|
|
|
|
|
|
|
|
role R
|
|
|
|
{
|
|
|
|
var ni: Nonce;
|
|
|
|
|
2012-05-02 22:26:41 +01:00
|
|
|
recv_1(I,R, {ni}pk(R) );
|
2006-11-21 13:40:50 +00:00
|
|
|
|
|
|
|
claim_r1(R,Secret,ni);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The agents in the system
|
|
|
|
|
|
|
|
|
|
|
|
// An untrusted agent, with leaked information
|
|
|
|
|
|
|
|
|
|
|
|
|